2012-01-27 15:06:25 -06:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
class TestExample extends PHPUnit_Framework_TestCase {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Test that a given condition is met.
|
|
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
public function testSomethingIsTrue()
|
|
|
|
|
{
|
2012-01-27 15:28:46 -06:00
|
|
|
$this->assertTrue(true);
|
2012-01-27 15:06:25 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|