Example #1
0
 /**
  * Method that is called before every test* method.
  */
 function setUp()
 {
     $this->reset_db();
     $this->dbObj->load_schema($this->dbObj->get_dbtype(), $this->dbObj);
     $this->blog = new csb_blog($this->dbObj, 'postgres');
     $this->assertTrue((bool) $this->blog->run_setup());
     parent::setUp();
 }
 public function tearDown()
 {
     parent::tearDown();
 }