14 lines
198 B
Go
14 lines
198 B
Go
|
package pgc
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
. "github.com/smartystreets/goconvey/convey"
|
||
|
)
|
||
|
|
||
|
func TestService_ZoneIdx(t *testing.T) {
|
||
|
Convey("ZoneIdx", t, WithService(func(s *Service) {
|
||
|
s.ZoneIdx()
|
||
|
}))
|
||
|
}
|