Files
llgo/_demo/runtest/foo/foo_test.go

10 lines
106 B
Go
Raw Normal View History

2024-12-31 10:53:38 +08:00
package foo
import "testing"
func TestFoo(t *testing.T) {
if Foo() != 1 {
t.Fatal("Foo() != 1")
}
}