Files
anylink/common/assert_test.go
bjdgyc eee99fcb0d init
2020-08-18 16:39:46 +08:00

11 lines
129 B
Go

package common
import "testing"
func AssertTrue(t *testing.T, a bool) {
t.Helper()
if !a {
t.Errorf("Not True %t", a)
}
}