More d:locale property support

- Specific tests
 - Locale is persisted as a string of a more consistent nature


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4608 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2006-12-14 15:11:21 +00:00
parent ab252efe82
commit fee38b6eb3
3 changed files with 21 additions and 1 deletions

View File

@@ -1649,4 +1649,15 @@ public abstract class BaseNodeServiceTest extends BaseSpringTest
NodeRef checkHijRef = nodeService.getChildByName(checkAbcRef, ASSOC_TYPE_QNAME_TEST_CONTAINS, "hij");
assertNull("Third level, named node 'HIJ' should not have been found", checkHijRef);
}
public void testLocalizedAspect() throws Exception
{
nodeService.addAspect(
rootNodeRef,
ContentModel.ASPECT_LOCALIZED,
Collections.<QName, Serializable>singletonMap(ContentModel.PROP_LOCALE, Locale.CANADA_FRENCH));
// commit to check
setComplete();
endTransaction();
}
}