Blame | Last modification | View Log | RSS feed
<?phpApp::uses('Category', 'Model');/*** Category Test Case**/class CategoryTest extends CakeTestCase {/*** Fixtures** @var array*/public $fixtures = array('app.category','app.backup_store_product','app.brand_preference','app.brand','app.category_discount','app.price_preference','app.product','app.store_cashback','app.store_product','app.user_category_hidden_brand');/*** setUp method** @return void*/public function setUp() {parent::setUp();$this->Category = ClassRegistry::init('Category');}/*** tearDown method** @return void*/public function tearDown() {unset($this->Category);parent::tearDown();}}