Skip to content

Commit dff4cf8

Browse files
Merge pull request #58016 from nextcloud/backport/58010/stable32
[stable32] test(dispatcher): Add some tests with input 0
2 parents 40a4e6f + 6b95ad0 commit dff4cf8

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/lib/AppFramework/Http/DispatcherTest.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -541,6 +541,11 @@ public static function rangeDataProvider(): array {
541541
[PHP_INT_MIN, PHP_INT_MAX, 42, false],
542542
[0, 12, -5, true],
543543
[-12, 0, 5, true],
544+
[1, 200, 0, true],
545+
[-15, -5, 0, true],
546+
[-15, 15, 0, false],
547+
[0, 200, 0, false],
548+
[-200, 0, 0, false],
544549
[7, 14, 5, true],
545550
[7, 14, 10, false],
546551
[-14, -7, -10, false],

0 commit comments

Comments
 (0)