Added basic assert functions
This commit is contained in:
parent
b73c6e6f90
commit
2b28627e58
6 changed files with 224 additions and 0 deletions
12
True_test.go
Normal file
12
True_test.go
Normal file
|
@ -0,0 +1,12 @@
|
|||
package assert_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"git.akyoto.dev/go/assert"
|
||||
)
|
||||
|
||||
func TestTrue(t *testing.T) {
|
||||
assert.True(t, true)
|
||||
assert.False(t, false)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue