True asserts true == act.
(t testing.TB, name string, act bool)
| 44 | |
| 45 | // True asserts true == act. |
| 46 | func True(t testing.TB, name string, act bool) { |
| 47 | t.Helper() |
| 48 | Equal(t, name, true, act) |
| 49 | } |
| 50 | |
| 51 | // False asserts false == act. |
| 52 | func False(t testing.TB, name string, act bool) { |