cycle_test.go 519 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package genopenapi
  2. import (
  3. "testing"
  4. )
  5. func TestCycle(t *testing.T) {
  6. for _, tt := range []struct {
  7. max int
  8. attempt int
  9. e bool
  10. }{
  11. {
  12. max: 3,
  13. attempt: 3,
  14. e: true,
  15. },
  16. {
  17. max: 5,
  18. attempt: 6,
  19. },
  20. {
  21. max: 1000,
  22. attempt: 1001,
  23. },
  24. } {
  25. c := newCycleChecker(tt.max)
  26. var final bool
  27. for i := 0; i < tt.attempt; i++ {
  28. final = c.Check("a")
  29. if !final {
  30. break
  31. }
  32. }
  33. if final != tt.e {
  34. t.Errorf("got: %t wanted: %t", final, tt.e)
  35. }
  36. }
  37. }