Files
llgo/cl/_testgo/runtest/main_test.go

14 lines
162 B
Go
Raw Normal View History

2024-12-31 10:53:38 +08:00
package main
import "testing"
func TestZoo(t *testing.T) {
if Zoo() != 3 {
t.Fatal("Zoo() != 3")
}
}
func TestFalse(t *testing.T) {
// t.Fatal("false")
}