sync_all_test.go 377 B

123456789101112131415161718192021
  1. package service
  2. import (
  3. "testing"
  4. . "github.com/smartystreets/goconvey/convey"
  5. )
  6. func Test_compareToken(t *testing.T) {
  7. once.Do(startService)
  8. Convey("Test compareToken", t, func() {
  9. //s.compareToken("201806", 0, 10)
  10. })
  11. }
  12. func Test_compareCookie(t *testing.T) {
  13. once.Do(startService)
  14. Convey("Test compareCookie", t, func() {
  15. //s.compareCookie("201806", 0)
  16. })
  17. }