15 lines
191 B
Go
15 lines
191 B
Go
|
package service
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
. "github.com/smartystreets/goconvey/convey"
|
||
|
)
|
||
|
|
||
|
func TestService_DoCompare(t *testing.T) {
|
||
|
once.Do(startService)
|
||
|
|
||
|
Convey("compare", t, func() {
|
||
|
})
|
||
|
}
|