. * * @package LibreNMS * @link http://librenms.org * @copyright 2017 Tony Murray * @author Tony Murray */ namespace LibreNMS\Tests; class DBTestCase extends TestCase { protected $db_name; public function setUp() { parent::setUp(); $this->dbSetUp(); $this->db_name = dbFetchCell('SELECT DATABASE()'); } public function tearDown() { $this->dbTearDown(); parent::tearDown(); } }