add example test file.

This commit is contained in:
Taylor Otwell
2012-01-27 15:06:25 -06:00
parent 2b7e4d1873
commit ae7faf1e45
2 changed files with 22 additions and 4 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);
}
}