테스트 케이스 수정

This commit is contained in:
2023-12-22 11:37:33 +09:00
parent 0c7698676b
commit e7e6cae88c

View File

@ -9,6 +9,7 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/gorilla/websocket"
"repositories.action2quare.com/ayo/gocommon/session" "repositories.action2quare.com/ayo/gocommon/session"
) )
@ -81,6 +82,9 @@ func (ph *testpeer) ApiFunc3(arg1 float64, arg2 []int) {
func (ph *testpeer) ClientDisconnected(reason string) { func (ph *testpeer) ClientDisconnected(reason string) {
} }
func (ph *testpeer) ClientConnected(*websocket.Conn) {
}
type dummySessionConsumer struct { type dummySessionConsumer struct {
} }