This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeAdmin/internal/utils/service_test.go
T
2024-07-27 15:42:58 +08:00

14 lines
289 B
Go

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