PHP Classes

File: tests/eMapper/PostgreSQL/DynamicSQLTest.php

Recommend this page to a friend!
  Classes of Emmanuel Antico   eMapper   tests/eMapper/PostgreSQL/DynamicSQLTest.php   Download  
File: tests/eMapper/PostgreSQL/DynamicSQLTest.php
Role: Unit test script
Content type: text/plain
Description: Unit test script
Class: eMapper
Database abstraction layer that maps data types
Author: By
Last change: Added: Additional methods for generic test traits.
Modified: Dynamic SQL tests.
Added: DynamicSQLProgram class.
Date: 9 years ago
Size: 586 bytes
 

Contents

Class file image Download
<?php
namespace eMapper\PostgreSQL;

use
eMapper\Engine\PostgreSQL\Type\PostgreSQLTypeManager;
use
eMapper\Engine\PostgreSQL\Statement\PostgreSQLStatement;
use
eMapper\AbstractDynamicSQLTest;
use
eMapper\Mapper;
use
eMapper\Engine\PostgreSQL\PostgreSQLDriver;
use
Acme\Type\RGBColorTypeHandler;

/**
 *
 * @author emaphp
 * @group dynamic
 */
class DynamicSQLTest extends AbstractDynamicSQLTest {
    use
PostgreSQLConfig;
   
    public function
buildStatement() {
       
$this->statement = $this->getStatement();
    }
   
    public function
buildMapper() {
       
$this->mapper = $this->getMapper();
    }
}
?>