<?php
require_once 'creole/IdGeneratorTest.php';
/**
* Tests for the MSSQL IdGenerator class.
*
*
* @author Hans Lellelid <hide@address.com>
* @version $Revision: 1.1 $
*/
class MSSQLIdGeneratorTest extends IdGeneratorTest {
/** Ensures that drivers are implementing the correct Id Method. */
public function testGetMethod() {
$this->assertEquals(IdGenerator::AUTOINCREMENT, $this->idgen->getIdMethod(), 0, "MSSQL Id method should be AUTOINCREMENT (but is not)");
}
}