Skip to content

Commit 70fd0e3

Browse files
Merge pull request #58010 from nextcloud/test/noid/add-tests-with-input-0
test(dispatcher): Add some tests with input 0
2 parents 128d708 + 9caa4e2 commit 70fd0e3

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

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)