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); + } +}