blob: 03aa1f3657b68bd53f64fdf0b3c34b3243e3f167 [file] [log] [blame]
package dylib
import "testing"
func TestFoo(t *testing.T) {
want := 42
if got := Foo(); got != want {
t.Errorf("got %d ; want %d", got, want)
}
}