mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-09 09:36:56 +01:00
20 lines
268 B
PHP
20 lines
268 B
PHP
<?php
|
|
|
|
Yii::import('system.i18n.CNumberFormatter');
|
|
|
|
class CNumberFormatterTest extends CTestCase
|
|
{
|
|
public function setUp()
|
|
{
|
|
}
|
|
|
|
public function tearDown()
|
|
{
|
|
}
|
|
|
|
public function testConstruct()
|
|
{
|
|
$formatter=new CNumberFormatter('zh');
|
|
}
|
|
}
|