chat_test.go 173 B

1234567891011121314
  1. package chat_test
  2. import (
  3. "testing"
  4. "trial/chat"
  5. "github.com/stretchr/testify/assert"
  6. )
  7. func TestChat(t *testing.T) {
  8. e := chat.NewChat().Run()
  9. assert.Nil(t, e)
  10. }