init_test.go 190 B

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