init_test.go 178 B

1234567891011121314151617
  1. package postgres
  2. import (
  3. "gframe/global"
  4. "gframe/logger"
  5. "testing"
  6. )
  7. func testInit() {
  8. logger.Init()
  9. global.Init()
  10. Init()
  11. }
  12. func TestInit(t *testing.T) {
  13. testInit()
  14. }