NotEquals asserts that the supplied boolean is not equal to the test boolean.
(test bool)
| 33 | |
| 34 | // NotEquals asserts that the supplied boolean is not equal to the test boolean. |
| 35 | func (o OnBoolean) NotEquals(test bool) bool { |
| 36 | return o.Compare(o.value, "!=", test).Test(o.value != test) |
| 37 | } |
| 38 | |
| 39 | // IsTrue asserts that the supplied boolean is true |
| 40 | func (o OnBoolean) IsTrue() bool { |