封装的方法类

This commit is contained in:
Yun
2023-09-16 20:14:20 +08:00
commit 1bbc7db405
59 changed files with 3671 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
package timer_test
import "testing"
// 单元测试
func TestHelloWorld(t *testing.T) {
// 日志
t.Log("hello world")
s := "ddd"
t.Logf("Log测试%s", s)
// t.Errorf("ErrorF %s", s)
// 标记错误(继续运行)
// t.Fail()
// 终止运行
// t.FailNow()
}