PHP Classes

File: tests/unit/Html/TagTest.php

Recommend this page to a friend!
  Classes of Haseeb Ahmad Basil   PHP Skeleton Framework   tests/unit/Html/TagTest.php   Download  
File: tests/unit/Html/TagTest.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Skeleton Framework
Extensive Web application development framework
Author: By
Last change:
Date: 8 years ago
Size: 489 bytes
 

Contents

Class file image Download
<?php

class Html_TagTest extends UnitTestCase {
   
    function
setUp() {
    }
   
    function
TearDown() {
    }
   
    function
testHtml_TagBasic() {
/*
          $Html_Tag = new A_Html_Tag();
       
        $this->assertEqual($Html_Tag->render('x'), '<x/>');
          $attr = array('before'=>'foo', 'after'=>'bar', );
          $this->assertEqual($Html_Tag->render('x', $attr), 'foo<x/>bar');
          $attr['id'] = 'baz';
          $this->assertEqual($Html_Tag->render('x', $attr), 'foo<x id="baz"/>bar');
*/
   
}
   
}