mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-26 15:22:15 +00:00
18 lines
275 B
Go
18 lines
275 B
Go
|
package v2
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
// XXX: This makes assumptions about the message routing
|
||
|
func TestReactor(t *testing.T) {
|
||
|
reactor := Reactor{}
|
||
|
reactor.Start()
|
||
|
script := Events{
|
||
|
testEvent{},
|
||
|
}
|
||
|
|
||
|
for _, event := range script {
|
||
|
reactor.Receive(event)
|
||
|
}
|
||
|
reactor.Wait()
|
||
|
}
|