Login   Register  
PHP Classes
elePHPant
Icontem

File: Test/Html/Div.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of MARY Matthieu  >  Html  >  Test/Html/Div.php  >  Download  
File: Test/Html/Div.php
Role: Unit test script
Content type: text/plain
Description: unit test case for div object
Class: Html
Generate HTML pages using page element classes
Author: By
Last change:
Date: 2007-06-24 04:07
Size: 2,463 bytes
 

Contents

Class file image Download
<?php
/**
 * $Id: Link.php 1384 2007-04-06 21:02:59Z matthieu $
 */
if (!class_exists('Test_Html_Div')) {
    if (!
defined('__CLASS_PATH__')) {
        
define('__CLASS_PATH__'realpath(dirname(__FILE__) . '/../../'));
    }
    require_once 
__CLASS_PATH__ '/Autoload.php';
    
/**
     * Test class for Html_Div class
     * @author Matthieu MARY <matthieu@phplibrairies.com>
     * @since $Date$
     * @package html
     * @subpackage unit_test_case
     */
    
class Test_Html_Div extends Test_Html_Template implements Test_Html_Design_Interface {
        
/**
         * the expected closed lavel
         */
        
const __CONTENT_STRING__ "my content";

        const 
__DEFAULT_CONTENT__ '&nbsp;';
        
/**
         * constructor
         * @access public
         * @return void
         */
        
public function __construct() {
            
parent :: __construct();
        }
        
/**
         * reinit the Link object
         * @access public
         * @return void
         */
        
public function setUp() {
            
$this->obj = new Html_Div();
        }
        
/**
        * test the default output
        * @access public
        * @return void
        */
        
public function testDefault() {
            
$this->_testCode('<div>'.self :: __DEFAULT_CONTENT__.'</div>');
        }
        
/**
         * test the set content method with a string parameter
         * @access public
         * @return void
         */
        
public function testContentWithString() {
            
$this->obj->setContent(self :: __CONTENT_STRING__);
            
$this->_testCode('<div>'.self :: __CONTENT_STRING__.'</div>');
        }
        
/**
         * test the set content method with an Html_Object
         * @access public
         * @return void
         */
        
public function testContentHtmlObject() {
            
$button = new Form_Button();
            
$this->obj->setContent($button);
            
$this->_testCode('<div>'.$button->__toString().'</div>');
        }
        
/**
         * test the set style method
         * @access public
         * @return void
         */
        
public function testSetStyle() {
            
$this->obj->setStyle(parent :: __STYLE_CONTENT__);
            
$this->_testCode('<div style="' parent :: __STYLE_CONTENT__ '">'.self :: __DEFAULT_CONTENT__.'</div>');
            
$this->_testGetter('getStyle()'parent :: __STYLE_CONTENT__$this->obj->getStyle());
        }
        
/**
         * test the set style class method
         * @access public
         * @return void
         */
        
public function testSetStyleClass() {
            
$this->obj->setStyleClass(parent :: __STYLE_CLASS_NAME__);
            
$this->_testCode('<div class="' parent :: __STYLE_CLASS_NAME__ '">'.self :: __DEFAULT_CONTENT__.'</div>');
            
$this->_testGetter('getStyleClass()'parent :: __STYLE_CLASS_NAME__$this->obj->getStyleClass());
        }
    }
}