ExampleTest.php 545 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace Tests;
  3. use StatonLab\TripalTestSuite\DBTransaction;
  4. use StatonLab\TripalTestSuite\TripalTestCase;
  5. /**
  6. * Class ExampleTest
  7. *
  8. * Note that test classes must have a suffix of Test.php and the filename
  9. * must match the class name.
  10. *
  11. * @package Tests
  12. */
  13. class ExampleTest extends TripalTestCase {
  14. /**
  15. * Basic test example.
  16. * Tests must begin with the word "test".
  17. * See https://phpunit.readthedocs.io/en/latest/ for more information.
  18. */
  19. public function testBasicExample() {
  20. $this->assertTrue(true);
  21. }
  22. }