Files
EdgeAPI/internal/utils/service_test.go
GoEdgeLab 5a17ae9d79 v1.4.1
2024-07-27 14:15:25 +08:00

14 lines
287 B
Go

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