|
@@ -0,0 +1,19 @@
|
|
|
+<?php
|
|
|
+namespace Tests\tripal_chado\api;
|
|
|
+
|
|
|
+use StatonLab\TripalTestSuite\DBTransaction;
|
|
|
+use StatonLab\TripalTestSuite\TripalTestCase;
|
|
|
+
|
|
|
+class TripalChadoCustomTablesAPITest extends TripalTestCase {
|
|
|
+ // Uncomment to auto start and rollback db transactions per test method.
|
|
|
+ // use DBTransaction;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Basic test example.
|
|
|
+ * Tests must begin with the word "test".
|
|
|
+ * See https://phpunit.readthedocs.io/en/latest/ for more information.
|
|
|
+ */
|
|
|
+ public function testBasicExample() {
|
|
|
+ $this->assertTrue(true);
|
|
|
+ }
|
|
|
+}
|