mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
22 lines
517 B
PHP
22 lines
517 B
PHP
<?php
|
|
/**
|
|
* @package framework
|
|
* @subpackage tests
|
|
*/
|
|
class DBLocaleTest extends SapphireTest {
|
|
public function testNice() {
|
|
$l = DBField::create_field('DBLocale', 'de_DE');
|
|
$this->assertEquals($l->Nice(), 'German');
|
|
}
|
|
|
|
public function testNiceNative() {
|
|
$l = DBField::create_field('DBLocale', 'de_DE');
|
|
$this->assertEquals($l->Nice(true), 'Deutsch');
|
|
}
|
|
|
|
public function testNativeName() {
|
|
$l = DBField::create_field('DBLocale', 'de_DE');
|
|
$this->assertEquals($l->getNativeName(), 'Deutsch');
|
|
}
|
|
}
|