demo2_test.go 184 B

1234567891011121314
  1. package test
  2. import (
  3. "github.com/gogf/gf/database/gdb"
  4. "testing"
  5. )
  6. func TestDemo2(t *testing.T) {
  7. t.Run("Adapters_test", test21)
  8. }
  9. func test21(t *testing.T) {
  10. gdb.Instance()
  11. }