Merge pull request #58010 from nextcloud/test/noid/add-tests-with-input-0

test(dispatcher): Add some tests with input 0
This commit is contained in:
Joas Schilling 2026-02-03 09:07:05 +01:00 committed by GitHub
commit 70fd0e3348
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -541,6 +541,11 @@ class DispatcherTest extends \Test\TestCase {
[PHP_INT_MIN, PHP_INT_MAX, 42, false],
[0, 12, -5, true],
[-12, 0, 5, true],
[1, 200, 0, true],
[-15, -5, 0, true],
[-15, 15, 0, false],
[0, 200, 0, false],
[-200, 0, 0, false],
[7, 14, 5, true],
[7, 14, 10, false],
[-14, -7, -10, false],