commit dd06b9819b9cc00e8661cfa1cd33ecb782dfda4e parent 692c7d4df13be9a831dac4c0f91c0eb903c5dd40 Author: mtrnord <mtrnord1@gmail.com> Date: Mon, 5 Oct 2015 20:04:16 +0200 add new test function Diffstat:
| M | tests/mysqliLoadedTest.php | | | 13 | +++++++++++++ |
1 file changed, 13 insertions(+), 0 deletions(-)
diff --git a/tests/mysqliLoadedTest.php b/tests/mysqliLoadedTest.php @@ -21,5 +21,18 @@ class mysqliLoadedTest extends PHPUnit_Framework_TestCase $this->markTestSkipped($mysqli->connect_error()); } } + + /** + * @depends testForMysqli + * @depends testDBConnection + */ + public function testCreateTestingTables() + { + $mysqli = new mysqli("localhost","root","","RPICMS"); + + + + + } } ?>