mirror of
https://github.com/silverstripe/silverstripe-mssql
synced 2024-10-22 08:05:53 +02:00
29 lines
930 B
PHP
29 lines
930 B
PHP
<?php
|
|
class MSSQLDatabaseQueryTest extends SapphireTest {
|
|
|
|
public static $fixture_file = 'MSSQLDatabaseQueryTest.yml';
|
|
|
|
protected $extraDataObjects = array(
|
|
'MSSQLDatabaseQueryTestDataObject'
|
|
);
|
|
|
|
public function testDateValueFormatting() {
|
|
$obj = $this->objFromFixture('MSSQLDatabaseQueryTestDataObject', 'test-data-1');
|
|
$this->assertEquals('2012-01-01', $obj->obj('TestDate')->Format('Y-m-d'), 'Date field value is formatted correctly (Y-m-d)');
|
|
}
|
|
|
|
public function testDatetimeValueFormatting() {
|
|
$obj = $this->objFromFixture('MSSQLDatabaseQueryTestDataObject', 'test-data-1');
|
|
$this->assertEquals('2012-01-01 10:30:00', $obj->obj('TestDatetime')->Format('Y-m-d H:i:s'), 'Datetime field value is formatted correctly (Y-m-d H:i:s)');
|
|
}
|
|
|
|
}
|
|
class MSSQLDatabaseQueryTestDataObject extends DataObject implements TestOnly {
|
|
|
|
public static $db = array(
|
|
'TestDate' => 'Date',
|
|
'TestDatetime' => 'SS_Datetime'
|
|
);
|
|
|
|
}
|