c5_labsci/test/xx_test.go
2026-01-27 00:52:00 +08:00

17 lines
366 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package test
//在 /test目录下执行 go test 只输出Fatalf信息 / go test -v 输出Logf日志
//go文件必须是xxx_test.go 函数名必须以Test开头可以自动执行
import (
"testing"
)
func TestDd(t *testing.T) {
// liba.Ta(func(ia int) int {
// t.Fatalf("fff")
// fmt.Printf("fn %T\n", ia)
// return ia
// })
t.Logf("Testdd")
}