(t *testing.T)
| 859 | } |
| 860 | |
| 861 | func TestFalse(t *testing.T) { |
| 862 | |
| 863 | mockT := new(testing.T) |
| 864 | |
| 865 | if !False(mockT, false) { |
| 866 | t.Error("False should return true") |
| 867 | } |
| 868 | if False(mockT, true) { |
| 869 | t.Error("False should return false") |
| 870 | } |
| 871 | |
| 872 | } |
| 873 | |
| 874 | func TestExactly(t *testing.T) { |
| 875 |