From 197fb1dbaaf3dc8a2e47cf65889d50756650fd36 Mon Sep 17 00:00:00 2001 From: liuxiaobo <1224730913@qq.com> Date: Thu, 29 May 2025 11:54:33 +0800 Subject: [PATCH] =?UTF-8?q?=E6=93=A6=E9=99=A4ide=E8=AD=A6=E5=91=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ipb/helper_test.go | 9 +++++++++ service/service_test.go | 5 +++++ 2 files changed, 14 insertions(+) create mode 100644 ipb/helper_test.go diff --git a/ipb/helper_test.go b/ipb/helper_test.go new file mode 100644 index 0000000..37aa42e --- /dev/null +++ b/ipb/helper_test.go @@ -0,0 +1,9 @@ +package ipb + +import ( + "testing" +) + +func TestWipeWarn(t *testing.T) { + t.Log(MakeMsg("serviceName", 1, 2, 3, []byte("hello world"))) +} diff --git a/service/service_test.go b/service/service_test.go index eb0222a..5d35c45 100644 --- a/service/service_test.go +++ b/service/service_test.go @@ -64,3 +64,8 @@ func TestService(t *testing.T) { s.WaitStop() log.Debug("exit") } + +func TestWipeWarn(t *testing.T) { + _ = TopicEx(TestSrv) + _ = RpcTopicEx(TestSrv) +}