diff --git a/tests/OnlyTest.php b/tests/OnlyTest.php index 145c2d2..5a9a200 100644 --- a/tests/OnlyTest.php +++ b/tests/OnlyTest.php @@ -91,6 +91,16 @@ public static function twiceDataProvider(): array static fn($datum): bool => $datum == 1, true, ], + [ + [1, true], + static fn($datum): bool => $datum == 1, + true, + ], + [ + [1, true, "1"], + static fn($datum): bool => $datum == 1, + false, + ], ]; }