Files
EdgeAPI/internal/utils/service_test.go

14 lines
287 B
Go
Raw Permalink Normal View History

2021-01-12 11:49:14 +08:00
package utils
import (
"testing"
2024-07-27 14:15:25 +08:00
teaconst "github.com/TeaOSLab/EdgeAPI/internal/const"
2021-01-12 11:49:14 +08:00
)
func TestServiceManager_Log(t *testing.T) {
manager := NewServiceManager(teaconst.ProductName, teaconst.ProductName+" Server")
manager.Log("Hello, World")
manager.LogError("Hello, World")
}