tripal_test.test 392 B

12345678910111213141516
  1. <?php
  2. use PHPUnit\Framework\TestCase;
  3. //some reading for organizing and annotating tests
  4. //https://stackoverflow.com/questions/8313283/phpunit-best-practices-to-organize-tests
  5. //https://jtreminio.com/2013/03/unit-testing-tutorial-introduction-to-phpunit/
  6. final class tripal_test extends TestCase {
  7. public function testTrueIsTrue() {
  8. $foo = TRUE;
  9. $this->assertTrue($foo);
  10. }
  11. }