本文整理汇总了PHP中MyCakeTestCase类的典型用法代码示例。如果您正苦于以下问题:PHP MyCakeTestCase类的具体用法?PHP MyCakeTestCase怎么用?PHP MyCakeTestCase使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了MyCakeTestCase类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: setUp
public function setUp()
{
parent::setUp();
//$this->skipIf(!file_exists(APP . 'Config' . DS . 'email.php'), 'no email.php');
Configure::write('Email.live', false);
$this->Email = new TestEmailLib();
}
示例2: setUp
public function setUp()
{
parent::setUp();
$this->KeyValueBehavior = new KeyValueBehavior();
$this->Model = ClassRegistry::init('User');
$this->Model->Behaviors->load('Tools.KeyValue');
}
示例3: setUp
public function setUp()
{
parent::setUp();
$this->Model = ClassRegistry::init('TestImap');
$config = [];
$this->Imap = new TestImapSource($config);
}
示例4: setUp
public function setUp()
{
$this->Model = ClassRegistry::init('Country');
$this->db = ConnectionManager::getDataSource('test');
$this->skipIf(!$this->db instanceof Mysql, 'The subquery test is only compatible with Mysql.');
parent::setUp();
}
示例5: setUp
public function setUp()
{
$this->InlineCss = new InlineCssLib(['engine' => InlineCssLib::ENGINE_CSS_TO_INLINE]);
$result = App::import('Vendor', 'Tools.CssToInlineStyles', ['file' => 'CssToInlineStyles' . DS . 'CssToInlineStyles.php']);
$this->skipIf(!$result);
parent::setUp();
}
示例6: setUp
public function setUp()
{
parent::setUp();
App::build(['Model' => [CakePlugin::path('Tools') . 'Test' . DS . 'test_app' . DS . 'Model' . DS]], App::RESET);
$this->Comment = ClassRegistry::init('BitmaskedComment');
$this->Comment->Behaviors->load('Tools.Bitmasked', ['mappedField' => 'statuses']);
}
示例7: setUp
public function setUp()
{
parent::setUp();
$this->ResetBehavior = new ResetBehavior();
$this->Model = ClassRegistry::init('MyComment');
$this->Model->Behaviors->load('Tools.Reset');
}
示例8: setUp
public function setUp()
{
parent::setUp();
Configure::write('Routing.prefixes', ['admin']);
Router::reload();
$this->Html = new HtmlExtHelper(new View(null));
}
示例9: setUp
public function setUp()
{
parent::setUp();
$this->MultipleDisplayFieldsBehavior = new MultipleDisplayFieldsBehavior();
$this->Comment = ClassRegistry::init('Comment');
$this->Comment->bindModel(['belongsTo' => ['User']], false);
$this->Comment->displayField = 'comment';
}
示例10: setUp
/**
* PwdShellTest::setUp()
*
* @return void
*/
public function setUp()
{
parent::setUp();
$output = new TestConsoleOutput();
$error = $this->getMock('ConsoleOutput', array(), array(), '', false);
$input = $this->getMock('ConsoleInput', array(), array(), '', false);
$this->PwdShell = new PwdShell($output, $error, $input);
}
示例11: setUp
public function setUp()
{
parent::setUp();
if ($this->isDebug()) {
Configure::write('Hazard.debug', true);
}
$this->HazardLib = new TestHazardLib();
}
示例12: setUp
public function setUp()
{
parent::setUp();
$this->NamedScopeBehavior = new NamedScopeBehavior();
$this->Comment = ClassRegistry::init('Comment');
$this->Comment->bindModel(array('belongsTo' => array('User')), false);
$this->Comment->displayField = 'comment';
$this->Comment->Behaviors->load('Tools.NamedScope');
$this->Comment->User->Behaviors->load('Tools.NamedScope');
}
示例13: tearDown
public function tearDown()
{
$this->ZipLib->close();
foreach ($this->testFiles as $file => $content) {
unlink(TMP . $file);
}
$this->_rrmdir(TMP . 'xyz');
$this->_rrmdir(TMP . 'xyz2');
parent::tearDown();
}
示例14: setUp
public function setUp()
{
parent::setUp();
$output = new TestConsoleOutput();
$error = $this->getMock('ConsoleOutput', [], [], '', false);
$input = $this->getMock('ConsoleInput', [], [], '', false);
$this->EncodingShell = new TestEncodingShell($output, $error, $input);
$this->EncodingShell->initialize();
$this->EncodingShell->startup();
}
示例15: setUp
public function setUp()
{
parent::setUp();
if ($this->isDebug()) {
$this->skipIf(!Configure::read('Mailchimp.apiKey'), 'No API key');
} else {
Configure::write('Mailchimp.apiKey', 'foo-bar');
}
$this->MailchimpAppModel = new MailchimpAppModel();
}