Files
2020-02-14 14:52:23 +11:00

19 lines
279 B
Go

package spike
import (
"testing"
"github.com/stretchr/testify/assert"
)
func A_Test(t *testing.T) {
a := "he2llo"
if a != hello() {
t.Errorf("a %v is not what we expected %v ", a, "hello")
}
}
func Test(t *testing.T) {
assert.NotNil(t, 123, "It Should not be nil")
}