go-eventbus/basic_test.go
2019-06-13 04:23:03 +02:00

14 lines
141 B
Go

package event
import (
"testing"
)
type EventA struct{}
func TestSimple(t *testing.T) {
bus := NewBus()
_, _ = bus.Sub(new(EventA))
}