mirror of
https://github.com/php/pftt2.git
synced 2026-03-24 09:12:17 +01: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';
|
|
}
|
|
} |