(t *testing.T)
| 776 | } |
| 777 | |
| 778 | func TestTrue(t *testing.T) { |
| 779 | |
| 780 | mockT := new(testing.T) |
| 781 | |
| 782 | if !True(mockT, true) { |
| 783 | t.Error("True should return true") |
| 784 | } |
| 785 | if True(mockT, false) { |
| 786 | t.Error("True should return false") |
| 787 | } |
| 788 | |
| 789 | } |
| 790 | |
| 791 | func TestFalse(t *testing.T) { |
| 792 |