Login   Register  
PHP Classes
elePHPant
Icontem

File: test/FactoryTest.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/FactoryTest.php  >  Download  
File: test/FactoryTest.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: 768 bytes
 

Contents

Class file image Download
<?php

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

    
/**
     * Test class for Factory.
     * Generated by PHPUnit on 2011-08-12 at 13:40:13.
     */
    
class FactoryTest extends PHPUnit_Framework_TestCase {


        public function 
test__callStatic() {
            
$node Reliq\Factory::eq(new Reliq\Nodes\SqlNode('t'), 'tt');
            
$this->assertEquals('Reliq\Nodes\EqNode'get_class($node));
        }

        
/**
         * @expectedException Reliq\Exceptions\UnsupportedNodeException
         */
        
public function testException() {
            
Reliq\Factory::non_existing_node();
        }
    }

?>