PHP Classes

File: tests/eMapper/SQLite/DynamicSQLTest.php

Recommend this page to a friend!
  Classes of Emmanuel Antico   eMapper   tests/eMapper/SQLite/DynamicSQLTest.php   Download  
File: tests/eMapper/SQLite/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: 631 bytes
 

Contents

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

use
eMapper\Engine\SQLite\Statement\SQLiteStatement;
use
eMapper\Engine\SQLite\Type\SQLiteTypeManager;
use
eMapper\AbstractDynamicSQLTest;
use
eMapper\Mapper;
use
eMapper\Engine\SQLite\SQLiteDriver;
use
Acme\Type\RGBColorTypeHandler;

/**
 * Test dynamix sql expressions running in a SQLite environment
 * @author emaphp
 * @group sqlite
 * @group dynamic
 */
class DynamicSQLTest extends AbstractDynamicSQLTest {
    use
SQLiteConfig;
   
    public function
buildStatement() {
       
$this->statement = $this->getStatement();
    }
   
    public function
buildMapper() {
       
$this->mapper = $this->getMapper();
    }
}
?>