mirror of
https://github.com/bjdgyc/anylink.git
synced 2025-09-19 10:04:23 +08:00
11 lines
129 B
Go
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)
|
|
}
|
|
}
|