14 lines
249 B
Go
Raw Permalink Normal View History

2023-07-05 13:46:19 +00:00
package assert
import "testing"
// True asserts that the given parameter is true.
func True(t testing.TB, a bool) {
Equal(t, a, true)
}
// False asserts that the given parameter is false.
func False(t testing.TB, a bool) {
Equal(t, a, false)
}