PHP Classes

File: tests/unit/Model/Helper/LoadTest.php

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

Contents

Class file image Download
<?php

include '../A/Locator.php';

class
Model_Helper_LoadTest extends UnitTestCase {
   
    private
$locator;
   
    public function
setUp() {
       
$this->locator = new A_Locator();
       
$this->locator->autoload();
    }
   
    private function
createLoader()
    {
       
$loader = new A_Model_Helper_Load($this->locator);
       
    }
   
}