PHP Classes

File: Test/Html/Design/Interface.php

Recommend this page to a friend!
  Classes of MARY Matthieu   Html   Test/Html/Design/Interface.php   Download  
File: Test/Html/Design/Interface.php
Role: Unit test script
Content type: text/plain
Description: interface for design test
Class: Html
Generate HTML pages using page element classes
Author: By
Last change:
Date: 16 years ago
Size: 676 bytes
 

Contents

Class file image Download
<?php
/**
 * $Id:Interface.php 1383 2007-04-06 20:56:27Z matthieu $
 */
if (!interface_exists('Test_Html_Design_Interface')) {
   
/**
     * form interface Element for simpletest unit test case
     * @author Matthieu MARY <matthieu@phplibrairies.com>
     * @license http://opensource.org/licenses/gpl-license.php GNU Public License
     * @package html
     * @subpackage unit_test_case
     */
   
interface Test_Html_Design_Interface {
       
/**
         * set the style
         * @access public
         * @param string $style : the style
         * @return void
         */
       
public function testSetStyle();
       
/**
         * get the class style
         * @access public
         * @return void
         */
       
public function testSetStyleClass();
    }
}