(t *testing.T)
| 789 | } |
| 790 | |
| 791 | func TestFalse(t *testing.T) { |
| 792 | |
| 793 | mockT := new(testing.T) |
| 794 | |
| 795 | if !False(mockT, false) { |
| 796 | t.Error("False should return true") |
| 797 | } |
| 798 | if False(mockT, true) { |
| 799 | t.Error("False should return false") |
| 800 | } |
| 801 | |
| 802 | } |
| 803 | |
| 804 | func TestExactly(t *testing.T) { |
| 805 |