cache_test.go 249 B

12345678910111213
  1. package test
  2. import (
  3. "testing"
  4. "xg_dba/internal/middleware"
  5. )
  6. func TestCache(t *testing.T) {
  7. // 指定需要查找的根文件夹路径
  8. folderPath := "C:\\Program_GT\\Code\\Go\\Work\\xugu\\xg_dba\\config"
  9. middleware.InitCache(folderPath)
  10. }