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