diff options
| -rw-r--r-- | hamlet.go | 2 | ||||
| -rw-r--r-- | hamlet_test.go | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -6,7 +6,7 @@ type Assertion struct { value bool } -func (a Assertion) Value() bool { +func (a Assertion) Assert() bool { return a.value } diff --git a/hamlet_test.go b/hamlet_test.go index cdbae0d..1a9df31 100644 --- a/hamlet_test.go +++ b/hamlet_test.go @@ -9,12 +9,12 @@ func TestAssertion(t *testing.T) { q := New(4) theorem1 := If(p, q) - if v := theorem1.Value(); !v { + if v := theorem1.Assert(); !v { t.Errorf("want %t, got %t", true, false) } theorem2 := If(q, p) - if v := theorem2.Value(); v { + if v := theorem2.Assert(); v { t.Errorf("want %t, got %t", false, true) } } |
