Browse Source

Better MessageFormatter tests

tags/2.0.0-beta
Alexander Makarov 11 years ago
parent
commit
71e2dcc6d5
  1. 11
      tests/unit/framework/i18n/MessageFormatterTest.php

11
tests/unit/framework/i18n/MessageFormatterTest.php

@ -142,11 +142,18 @@ _MSG_
}
/**
* when instantiating a MessageFormatter with invalid pattern it should be null
* When instantiating a MessageFormatter with invalid pattern it should be null with default settings.
* It will be IntlException if intl.use_exceptions=1 and PHP 5.5 or newer or an error if intl.error_level is not 0.
*/
public function testNullConstructor()
{
$this->assertNull(new MessageFormatter('en_US', ''));
if(ini_get('intl.use_exceptions')) {
$this->setExpectedException('IntlException');
}
if (!ini_get('intl.error_level') || ini_get('intl.use_exceptions')) {
$this->assertNull(new MessageFormatter('en_US', ''));
}
}
public function testNoParams()

Loading…
Cancel
Save