2011-02-27 18:25:23 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* CakeEmailTest file
|
|
|
|
*
|
|
|
|
* PHP 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) Tests <http://book.cakephp.org/view/1196/Testing>
|
|
|
|
* Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice
|
|
|
|
*
|
|
|
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
|
|
* @link http://book.cakephp.org/view/1196/Testing CakePHP(tm) Tests
|
|
|
|
* @package cake.tests.cases.libs
|
|
|
|
* @since CakePHP(tm) v 2.0.0
|
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
|
|
*/
|
|
|
|
App::import('Core', 'CakeEmail');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* CakeEmailTest class
|
|
|
|
*
|
|
|
|
* @package cake.tests.cases.libs
|
|
|
|
*/
|
|
|
|
class CakeEmailTest extends CakeTestCase {
|
|
|
|
|
|
|
|
/**
|
2011-03-01 04:19:47 +00:00
|
|
|
* testHeaders method
|
2011-02-27 18:25:23 +00:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-03-01 04:19:47 +00:00
|
|
|
public function testHeaders() {
|
2011-02-27 18:25:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* testSend method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testSend() {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* testReset method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testReset() {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|