Todo List
Documentation is available at ActionMailerTest.php
<?php /** * File for the ActionMailerTest class * * (PHP 5) * * @package PHPonTraxTest * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @copyright (c) Walter O. Haas 2006 * @version $Id: ActionMailerTest.php 192 2006-03-27 22:02:53Z haas $ * @author Walt Haas <haas@xmission.com> */ echo "testing ActionMailer\n"; require_once 'testenv.php'; // Call ActionMailerTest::main() if this source file is executed directly. if (!defined("PHPUnit2_MAIN_METHOD")) { define("PHPUnit2_MAIN_METHOD", "ActionMailerTest::main"); } require_once "PHPUnit2/Framework/TestCase.php"; require_once "PHPUnit2/Framework/TestSuite.php"; // You may remove the following line when all tests have been implemented. require_once "PHPUnit2/Framework/IncompleteTestError.php"; require_once "action_mailer.php"; /** * Test class for ActionMailer. * Generated by PHPUnit2_Util_Skeleton on 2006-03-01 at 13:18:09. */ class ActionMailerTest extends PHPUnit2_Framework_TestCase { /** * Runs the test methods of this class. * * @access public * @static */ public static function main() { require_once "PHPUnit2/TextUI/TestRunner.php"; $suite = new PHPUnit2_Framework_TestSuite("ActionMailerTest"); $result = PHPUnit2_TextUI_TestRunner::run($suite); } /** * Sets up the fixture, for example, open a network connection. * This method is called before a test is executed. * * @access protected */ protected function setUp() { } /** * Tears down the fixture, for example, close a network connection. * This method is called after a test is executed. * * @access protected */ protected function tearDown() { } /** * @todo Implement testAdd_to_address(). */ public function testAdd_to_address() { // Remove the following line when you implement this test. throw new PHPUnit2_Framework_IncompleteTestError; } /** * @todo Implement testAdd_cc_address(). */ public function testAdd_cc_address() { // Remove the following line when you implement this test. throw new PHPUnit2_Framework_IncompleteTestError; } /** * @todo Implement testAdd_bcc_address(). */ public function testAdd_bcc_address() { // Remove the following line when you implement this test. throw new PHPUnit2_Framework_IncompleteTestError; } /** * @todo Implement testAdd_replyto_address(). */ public function testAdd_replyto_address() { // Remove the following line when you implement this test. throw new PHPUnit2_Framework_IncompleteTestError; } /** * @todo Implement testSet_from_address(). */ public function testSet_from_address() { // Remove the following line when you implement this test. throw new PHPUnit2_Framework_IncompleteTestError; } /** * @todo Implement testSet_text_body(). */ public function testSet_text_body() { // Remove the following line when you implement this test. throw new PHPUnit2_Framework_IncompleteTestError; } /** * @todo Implement testSet_html_body(). */ public function testSet_html_body() { // Remove the following line when you implement this test. throw new PHPUnit2_Framework_IncompleteTestError; } /** * @todo Implement testSet_subject(). */ public function testSet_subject() { // Remove the following line when you implement this test. throw new PHPUnit2_Framework_IncompleteTestError; } /** * @todo Implement testAdd_attachment(). */ public function testAdd_attachment() { // Remove the following line when you implement this test. throw new PHPUnit2_Framework_IncompleteTestError; } /** * @todo Implement testFormat_address(). */ public function testFormat_address() { // Remove the following line when you implement this test. throw new PHPUnit2_Framework_IncompleteTestError; } /** * @todo Implement testValidate_email(). */ public function testValidate_email() { // Remove the following line when you implement this test. throw new PHPUnit2_Framework_IncompleteTestError; } /** * @todo Implement testSet_header_line(). */ public function testSet_header_line() { // Remove the following line when you implement this test. throw new PHPUnit2_Framework_IncompleteTestError; } /** * @todo Implement testSet_headers(). */ public function testSet_headers() { // Remove the following line when you implement this test. throw new PHPUnit2_Framework_IncompleteTestError; } /** * @todo Implement testSend(). */ public function testSend() { // Remove the following line when you implement this test. throw new PHPUnit2_Framework_IncompleteTestError; } } // Call ActionMailerTest::main() if this source file is executed directly. if (PHPUnit2_MAIN_METHOD == "ActionMailerTest::main") { ActionMailerTest::main(); } // -- set Emacs parameters -- // Local variables: // tab-width: 4 // c-basic-offset: 4 // c-hanging-comment-ender-p: nil // indent-tabs-mode: nil // End: ?>