PHP Classes

File: tests/eMapper/MySQL/DynamicSQLTest.php

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

Contents

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

use
eMapper\AbstractDynamicSQLTest;

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