擦除ide警告

This commit is contained in:
liuxiaobo 2025-05-29 11:54:33 +08:00
parent 09d742e740
commit 197fb1dbaa
2 changed files with 14 additions and 0 deletions

9
ipb/helper_test.go Normal file
View File

@ -0,0 +1,9 @@
package ipb
import (
"testing"
)
func TestWipeWarn(t *testing.T) {
t.Log(MakeMsg("serviceName", 1, 2, 3, []byte("hello world")))
}

View File

@ -64,3 +64,8 @@ func TestService(t *testing.T) {
s.WaitStop() s.WaitStop()
log.Debug("exit") log.Debug("exit")
} }
func TestWipeWarn(t *testing.T) {
_ = TopicEx(TestSrv)
_ = RpcTopicEx(TestSrv)
}