Browse Source

Better MessageFormatter tests

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

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

@ -142,12 +142,19 @@ _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() public function testNullConstructor()
{ {
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', '')); $this->assertNull(new MessageFormatter('en_US', ''));
} }
}
public function testNoParams() public function testNoParams()
{ {

Loading…
Cancel
Save