From 6b95ad0aab3f404a2c29dca90984081eae2523ef Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 3 Feb 2026 08:32:43 +0100 Subject: [PATCH] test(dispatcher): Add some tests with input 0 Signed-off-by: Joas Schilling --- tests/lib/AppFramework/Http/DispatcherTest.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/lib/AppFramework/Http/DispatcherTest.php b/tests/lib/AppFramework/Http/DispatcherTest.php index 86c78e840e0..6e431fff08c 100644 --- a/tests/lib/AppFramework/Http/DispatcherTest.php +++ b/tests/lib/AppFramework/Http/DispatcherTest.php @@ -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],