Files
eventBus1/test/panic_test.go
2023-03-03 22:14:25 +08:00

13 lines
263 B
Go

package test
import (
"github.com/farseer-go/eventBus"
"github.com/stretchr/testify/assert"
"testing"
)
func TestPanic(t *testing.T) {
assert.Error(t, eventBus.PublishEvent("testPanic", nil))
assert.Error(t, eventBus.PublishEventAsync("testPanic", nil))
}