27 lines
351 B
Go
27 lines
351 B
Go
package timerx_test
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
// 单元测试
|
|
|
|
func TestHelloWorld(t *testing.T) {
|
|
// 日志
|
|
// t.Log("hello world")
|
|
|
|
fmt.Println("hello world")
|
|
|
|
// s := "ddd"
|
|
// t.Logf("Log测试%s", s)
|
|
// t.Errorf("ErrorF %s", s)
|
|
|
|
// 标记错误(继续运行)
|
|
// t.Fail()
|
|
|
|
// 终止运行
|
|
// t.FailNow()
|
|
|
|
}
|