TripalChadoCustomTablesAPITest.php 522 B

123456789101112131415161718
  1. <?php
  2. namespace Tests\tripal_chado\api;
  3. use StatonLab\TripalTestSuite\DBTransaction;
  4. use StatonLab\TripalTestSuite\TripalTestCase;
  5. class TripalChadoCustomTablesAPITest extends TripalTestCase {
  6. // Uncomment to auto start and rollback db transactions per test method.
  7. // use DBTransaction;
  8. /**
  9. * Basic test example.
  10. * Tests must begin with the word "test".
  11. * See https://phpunit.readthedocs.io/en/latest/ for more information.
  12. */
  13. public function testBasicExample() {
  14. $this->assertTrue(true);
  15. }
  16. }