mirror of
https://github.com/php/pftt2.git
synced 2026-04-25 01:28:16 +02:00
9 lines
214 B
PHP
9 lines
214 B
PHP
<?php
|
|
class HelloWorldTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
public function testExpectHelloWorldActualHelloWorld()
|
|
{
|
|
$this->expectOutputString('Hello World');
|
|
include 'HelloWorld.php';
|
|
}
|
|
} |