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

14 lines
275 B
Go
Raw Normal View History

package models_test
2021-06-27 21:59:37 +08:00
import (
"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"
"testing"
2021-06-27 21:59:37 +08:00
)
func TestMetricStatDAO_Clean(t *testing.T) {
var dao = models.NewMetricStatDAO()
t.Log(dao.Clean(nil))
}