From 79afce445b379fb859b18a0632cbfb1d764ba519 Mon Sep 17 00:00:00 2001 From: Armel van Ravels Date: Sat, 6 Jun 2026 10:50:51 +0200 Subject: [PATCH] Add ProcessRunnerTest --- tests/Process/ProcessRunnerTest.php | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 tests/Process/ProcessRunnerTest.php diff --git a/tests/Process/ProcessRunnerTest.php b/tests/Process/ProcessRunnerTest.php new file mode 100644 index 0000000..ce08684 --- /dev/null +++ b/tests/Process/ProcessRunnerTest.php @@ -0,0 +1,19 @@ +run(['php', '-r', 'echo "hello world";']); + + $this->assertSame('hello world', $output); + } +}