mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-02 03:40:27 +08:00
14 lines
289 B
Go
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")
|
|
}
|