41 lines
565 B
PHP
41 lines
565 B
PHP
|
<?php
|
||
|
App::uses('MicDjListGraducation', 'Model');
|
||
|
|
||
|
/**
|
||
|
* MicDjListGraducation Test Case
|
||
|
*
|
||
|
*/
|
||
|
class MicDjListGraducationTest extends CakeTestCase {
|
||
|
|
||
|
/**
|
||
|
* Fixtures
|
||
|
*
|
||
|
* @var array
|
||
|
*/
|
||
|
public $fixtures = array(
|
||
|
'app.mic_dj_list_graducation'
|
||
|
);
|
||
|
|
||
|
/**
|
||
|
* setUp method
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function setUp() {
|
||
|
parent::setUp();
|
||
|
$this->MicDjListGraducation = ClassRegistry::init('MicDjListGraducation');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* tearDown method
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function tearDown() {
|
||
|
unset($this->MicDjListGraducation);
|
||
|
|
||
|
parent::tearDown();
|
||
|
}
|
||
|
|
||
|
}
|