Login   Register  
PHP Classes
elePHPant
Icontem

File: test/AutoLoadTest.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Arthur Borisow  >  reliq  >  test/AutoLoadTest.php  >  Download  
File: test/AutoLoadTest.php
Role: Unit test script
Content type: text/plain
Description: Unit test script
Class: reliq
Compose relational queries programmatically
Author: By
Last change:
Date: 2012-03-08 08:12
Size: 548 bytes
 

Contents

Class file image Download
<?php

    
require_once dirname(__FILE__) . DIRECTORY_SEPARATOR '..' .
                 
DIRECTORY_SEPARATOR 'reliq'
                 
DIRECTORY_SEPARATOR
                 
'autoload.php';

    
/**
     * Test class for SelectManager.
     * Generated by PHPUnit on 2011-08-07 at 18:22:52.
     */
    
class AutoLoadTest extends PHPUnit_Framework_TestCase {

        public function 
testAutoLoad() {
            
$t = new \Reliq\Table('table', array('driver' => 'test'));

            new \
Reliq\Managers\SelectManager($t);
        }
    }

?>