gmarche/vendor/phpunit/phpunit/tests/TextUI/phpt-stdin.phpt

12 lines
163 B
Plaintext
Raw Permalink Normal View History

2019-10-25 00:13:47 +02:00
--TEST--
PHPT runner supports STDIN section
--STDIN--
Hello World
--FILE--
<?php
$input = file_get_contents('php://stdin');
echo $input;
?>
--EXPECT--
Hello World