made testing elegant.

This commit is contained in:
Taylor Otwell
2012-01-27 15:28:46 -06:00
parent ae7faf1e45
commit f706ed75bf
8 changed files with 81 additions and 16 deletions

View File

@@ -0,0 +1,15 @@
<?php
class TestExample extends PHPUnit_Framework_TestCase {
/**
* Test that a given condition is met.
*
* @return void
*/
public function testSomethingIsTrue()
{
$this->assertTrue(true);
}
}