example.test.php 209 B

123456789101112131415
  1. <?php
  2. class TestExample extends PHPUnit_Framework_TestCase {
  3. /**
  4. * Test that a given condition is met.
  5. *
  6. * @return void
  7. */
  8. public function testSomethingIsTrue()
  9. {
  10. $this->assertTrue(true);
  11. }
  12. }