Files
EdgeAPI/internal/utils/service_test.go
2021-01-12 11:49:14 +08:00

13 lines
286 B
Go

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