RM-4611 - missed some formatting

This commit is contained in:
Ramona Popa
2017-04-21 11:51:57 +03:00
parent cec0f84cce
commit 3ea1cad6dd

View File

@@ -797,11 +797,13 @@ public class RecordServiceImplTest extends BaseRMTestCase implements BeforeRecor
{
assertFalse(recordService.isRecord(dmDocument));
BehaviourDefinition<ClassBehaviourBinding> beforeRecordDeclarationBehaviour = policyComponent.bindClassBehaviour(RecordsManagementPolicies.BEFORE_RECORD_DECLARATION, ContentModel.TYPE_CONTENT,
BehaviourDefinition<ClassBehaviourBinding> beforeRecordDeclarationBehaviour = policyComponent.bindClassBehaviour(
RecordsManagementPolicies.BEFORE_RECORD_DECLARATION, ContentModel.TYPE_CONTENT,
new JavaBehaviour(RecordServiceImplTest.this, "beforeRecordDeclaration", NotificationFrequency.EVERY_EVENT));
BehaviourDefinition<ClassBehaviourBinding> onRecordDeclarationBehaviour = policyComponent.bindClassBehaviour(RecordsManagementPolicies.ON_RECORD_DECLARATION, ASPECT_RECORD,
BehaviourDefinition<ClassBehaviourBinding> onRecordDeclarationBehaviour = policyComponent.bindClassBehaviour(
RecordsManagementPolicies.ON_RECORD_DECLARATION, ASPECT_RECORD,
new JavaBehaviour(RecordServiceImplTest.this, "onRecordDeclaration", NotificationFrequency.EVERY_EVENT));
assertFalse(beforeRecordDeclaration);
assertFalse(onRecordDeclaration);