package hamlet import ( "fmt" "testing" ) func TestAssertion(t *testing.T) { prop1 := New(4) prop2 := New("") fmt.Println(If(prop2, prop1)) fmt.Println(If(prop1, prop2)) }