Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
15403 manish.sha 1
<?php
2
App::uses('Category', 'Model');
3
 
4
/**
5
 * Category Test Case
6
 *
7
 */
8
class CategoryTest extends CakeTestCase {
9
 
10
/**
11
 * Fixtures
12
 *
13
 * @var array
14
 */
15
	public $fixtures = array(
16
		'app.category',
17
		'app.backup_store_product',
18
		'app.brand_preference',
19
		'app.brand',
20
		'app.category_discount',
21
		'app.price_preference',
22
		'app.product',
23
		'app.store_cashback',
24
		'app.store_product',
25
		'app.user_category_hidden_brand'
26
	);
27
 
28
/**
29
 * setUp method
30
 *
31
 * @return void
32
 */
33
	public function setUp() {
34
		parent::setUp();
35
		$this->Category = ClassRegistry::init('Category');
36
	}
37
 
38
/**
39
 * tearDown method
40
 *
41
 * @return void
42
 */
43
	public function tearDown() {
44
		unset($this->Category);
45
 
46
		parent::tearDown();
47
	}
48
 
49
}