PHP Classes

File: tests/unit/Template/FileTest.php

Recommend this page to a friend!
  Classes of Haseeb Ahmad Basil   PHP Skeleton Framework   tests/unit/Template/FileTest.php   Download  
File: tests/unit/Template/FileTest.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: 397 bytes
 

Contents

Class file image Download
<?php

class Template_FileTest extends UnitTestCase {
   
    function
setUp() {
    }
   
    function
TearDown() {
    }
   
    function
testTemplate_FileNotNull() {
         
$filename='';
         
$data=array();
         
$auto_blocks=false;
         
$Template_File = new A_Template_File($filename, $data, $auto_blocks);
       
       
$result = true;
         
$this->assertTrue($result);
       
$this->assertFalse(!$result);
    }
   
}