本文整理匯總了PHP中Locale::getTestedTranslationKey方法的典型用法代碼示例。如果您正苦於以下問題:PHP Locale::getTestedTranslationKey方法的具體用法?PHP Locale::getTestedTranslationKey怎麽用?PHP Locale::getTestedTranslationKey使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Locale
的用法示例。
在下文中一共展示了Locale::getTestedTranslationKey方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: testExecuteWithUnsupportedPublicationType
public function testExecuteWithUnsupportedPublicationType()
{
$nameSchemaName = 'lib.pkp.plugins.metadata.nlm30.schema.Nlm30NameSchema';
$citationSchemaName = 'lib.pkp.plugins.metadata.nlm30.schema.Nlm30CitationSchema';
// Create a description with an unsupported publication type
$citationDescription = new MetadataDescription($citationSchemaName, ASSOC_TYPE_CITATION);
$citationDescription->addStatement('[@publication-type]', $pubType = NLM30_PUBLICATION_TYPE_THESIS);
$citationOutputFilter = $this->getFilterInstance();
$result = $citationOutputFilter->execute($citationDescription);
self::assertEquals('', $result);
self::assertEquals(array('translated string'), $citationOutputFilter->getErrors());
self::assertEquals(Locale::getTestedTranslationKey(), 'submission.citations.filter.unsupportedPublicationType');
}
開發者ID:ramonsodoma,項目名稱:pkp-lib,代碼行數:13,代碼來源:Nlm30CitationSchemaCitationOutputFormatFilterTest.inc.php
示例2: testExecuteWithUnsupportedPublicationType
public function testExecuteWithUnsupportedPublicationType()
{
$nameSchema = new NlmNameSchema();
$citationSchema = new NlmCitationSchema();
// Create a description with an unsupported publication type
$citationDescription = new MetadataDescription($citationSchema, ASSOC_TYPE_CITATION);
$citationDescription->addStatement('[@publication-type]', $pubType = NLM_PUBLICATION_TYPE_THESIS);
$citationOutputFilter = $this->getFilterInstance();
$result = $citationOutputFilter->execute($citationDescription);
self::assertEquals('translated string', $result);
// This is the string returned from the mock locale for all translations
self::assertEquals(Locale::getTestedTranslationKey(), 'submission.citations.output.unsupportedPublicationType');
}
示例3: testGetMessage
/**
* @covers FormValidatorLocale::getMessage
*/
public function testGetMessage()
{
$formValidator = new FormValidatorLocale($form, 'testData', FORM_VALIDATOR_REQUIRED_VALUE, 'some.message.key');
self::assertSame('translated string (English)', $formValidator->getMessage());
self::assertSame('some.message.key', Locale::getTestedTranslationKey());
}