PHP Classes

File: test/persistence/DbDriverTest.php

Recommend this page to a friend!
  Classes of Victor Bolshov   Tiny PHP ORM Framework   test/persistence/DbDriverTest.php   Download  
File: test/persistence/DbDriverTest.php
Role: Unit test script
Content type: text/plain
Description: Unit test script
Class: Tiny PHP ORM Framework
Map objects to databases using composed queries
Author: By
Last change:
Date: 8 years ago
Size: 316 bytes
 

Contents

Class file image Download
<?php

namespace tinyorm\test\persistence;

use
tinyorm\persistence\DbDriver;
use
tinyorm\test\PersistenceDriverTest;

class
DbDriverTest extends PersistenceDriverTest {
   
/**
     * @return DbDriver
     */
   
protected function createPersistenceDriver() {
        return new
DbDriver($this->connection);
    }
}