Files
pftt2/cache/helloworld/tests/HelloWorldTest.php

9 lines
214 B
PHP

<?php
class HelloWorldTest extends PHPUnit_Framework_TestCase
{
public function testExpectHelloWorldActualHelloWorld()
{
$this->expectOutputString('Hello World');
include 'HelloWorld.php';
}
}