* Copyright 2005-2007, Cake Software Foundation, Inc. * 1785 E. Sahara Avenue, Suite 490-204 * Las Vegas, Nevada 89104 * * Licensed under The Open Group Test Suite License * Redistributions of files must retain the above copyright notice. * * @filesource * @copyright Copyright 2005-2007, Cake Software Foundation, Inc. * @link https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests * @package cake * @subpackage cake.cake.tests.cases.libs.controller.components * @since CakePHP(tm) v 1.2.0.5347 * @version $Revision$ * @modifiedby $LastChangedBy$ * @lastmodified $Date$ * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License */ require_once LIBS . '/controller/components/email.php'; class EmailTestController extends Controller { var $name = 'EmailTest'; var $uses = null; var $components = array('Email'); } class EmailTest extends CakeTestCase { var $name = 'Email'; function setUp() { $this->Controller =& new EmailTestController(); restore_error_handler(); @$this->Controller->_initComponents(); set_error_handler('simpleTestErrorHandler'); $this->Controller->Email->startup($this->Controller); ClassRegistry::addObject('view', new View($this->Controller)); } function testConstruction() { $this->assertTrue(is_object($this->Controller->Email)); } function testBadSmtpSent() { $this->Controller->Email->smtpOptions['host'] = 'caketest.com'; $this->Controller->Email->delivery = 'smtp'; $this->assertFalse($this->Controller->Email->send('This should not work')); } } ?>