Files
EdgeAPI/internal/db/models/metric_item_dao_test.go

15 lines
276 B
Go
Raw Normal View History

package models_test
2021-06-27 21:59:37 +08:00
import (
2024-07-27 14:15:25 +08:00
"testing"
"github.com/TeaOSLab/EdgeAPI/internal/db/models"
2021-06-27 21:59:37 +08:00
_ "github.com/go-sql-driver/mysql"
_ "github.com/iwind/TeaGo/bootstrap"
)
func TestMetricStatDAO_Clean(t *testing.T) {
var dao = models.NewMetricStatDAO()
t.Log(dao.Clean(nil))
}