sintonia/library/propel/test/tools/helpers/bookstore/BookstoreEmptyTestBase.php

39 lines
855 B
PHP

<?php
/**
* This file is part of the Propel package.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @license MIT License
*/
require_once 'tools/helpers/bookstore/BookstoreTestBase.php';
require_once 'tools/helpers/bookstore/BookstoreDataPopulator.php';
/**
* Base class contains some methods shared by subclass test cases.
*/
abstract class BookstoreEmptyTestBase extends BookstoreTestBase
{
/**
* This is run before each unit test; it populates the database.
*/
protected function setUp()
{
parent::setUp();
BookstoreDataPopulator::depopulate($this->con);
}
/**
* This is run after each unit test. It empties the database.
*/
protected function tearDown()
{
BookstoreDataPopulator::depopulate($this->con);
parent::tearDown();
}
}