Files
waf-platform/EdgeDNS/internal/utils/service_test.go

13 lines
286 B
Go

package utils
import (
teaconst "github.com/TeaOSLab/EdgeDNS/internal/const"
"testing"
)
func TestServiceManager_Log(t *testing.T) {
manager := NewServiceManager(teaconst.ProductName, teaconst.ProductName+" Server")
manager.Log("Hello, World")
manager.LogError("Hello, World")
}