You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/observability/event/event_sys_test.go

15 lines
239 B

package event
import (
"testing"
"github.com/stretchr/testify/require"
)
func Test_SysEvent_EventType(t *testing.T) {
t.Run("simple", func(t *testing.T) {
e := sysEvent{}
require.Equal(t, string(SystemType), e.EventType())
})
}