From ea1e7ae36890c0f34dbac9146d86ea72dc1c0afa Mon Sep 17 00:00:00 2001 From: Gregor Harlan Date: Thu, 11 Sep 2025 00:42:15 +0200 Subject: [PATCH] Fix `BinTestCase` --- tests/BinTestCase.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/BinTestCase.php b/tests/BinTestCase.php index aefc344..35bf374 100644 --- a/tests/BinTestCase.php +++ b/tests/BinTestCase.php @@ -36,6 +36,9 @@ protected function runCommand( fclose($pipe); } + self::assertNotFalse($output); + self::assertNotFalse($errorOutput); + $extraInfo = "Output was:\n" . $output . "\nError was:\n" . $errorOutput . "\n"; if ($expectedOutputContains !== null) {