1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-05-11 05:57:13 +00:00

18 lines
271 B
Go
Raw Normal View History

package v2
import "testing"
// XXX: This makes assumptions about the message routing
func TestReactor(t *testing.T) {
reactor := Reactor{}
reactor.Start()
script := []Event{
// TODO
}
for _, event := range script {
reactor.Receive(event)
}
reactor.Wait()
}