============================================================================= STRESS: Ensure no infinite loops or panics on pathological inputs ============================================================================= Verifies: SYS-REQ-006 [boundary]
(t *testing.T)
| 608 | |
| 609 | // Verifies: SYS-REQ-006 [boundary] |
| 610 | func TestStress_ArrayEach_NestedEmpty(t *testing.T) { |
| 611 | _, err := ArrayEach([]byte(`[[],[]]`), func(value []byte, dataType ValueType, offset int, err error) { |
| 612 | // nested arrays |
| 613 | }) |
| 614 | if err != nil { |
| 615 | t.Fatalf("unexpected error: %v", err) |
| 616 | } |
| 617 | } |
| 618 | |
| 619 | // Verifies: SYS-REQ-008 [boundary] |
| 620 | func TestStress_EachKey_LargeNestedSkip(t *testing.T) { |
nothing calls this directly
no test coverage detected