cakephp2-php8/lib/Cake/tests/Case/Network/CakeEmailTest.php

53 lines
1 KiB
PHP
Raw Normal View History

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 {
/**
* testHeaders method
2011-02-27 18:25:23 +00:00
*
* @return void
*/
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() {
}
}