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