github.com/sohaha/zlsgo@v1.7.13-0.20240501141223-10dd1a906f76/test_test.go (about)

     1  package zlsgo_test
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/sohaha/zlsgo"
     7  )
     8  
     9  func TestNewTest(t *testing.T) {
    10  	tt := zlsgo.NewTest(t)
    11  
    12  	tt.Equal(1, 1)
    13  	tt.EqualExit(1, 1)
    14  	tt.EqualTrue(true)
    15  	tt.EqualNil(nil)
    16  	tt.NoError(nil)
    17  	tt.Log("ok")
    18  	tt.T().Log("ok")
    19  	tt.Run("Logf", func(tt *zlsgo.TestUtil) {
    20  		tt.Logf("name: %s\n", tt.PrintMyName())
    21  	})
    22  }