1
0
mirror of https://github.com/IceWhaleTech/CasaOS.git synced 2025-07-03 23:30:39 +02:00
Files
CasaOS/service/other_test.go

13 lines
186 B
Go
Raw Normal View History

package service
import (
"testing"
)
func TestSearch(t *testing.T) {
if d, e := NewOtherService().Search("test"); e != nil || d == nil {
t.Error("then test search error", e)
}
}