saerro-go/cmd/ws/event_names_test.go
2024-06-13 22:33:29 -04:00

14 lines
287 B
Go

package main
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestEventNames(t *testing.T) {
result := getEventNames()
assert.Contains(t, result, "GainExperience_experience_id_55")
assert.Contains(t, result, "Death")
assert.Contains(t, result, "VehicleDestroy")
}