context.setProperty(PolicyContext.PropertyName.TARGET_COMPONENT.getName(), mockPrivateComponentWithDifferentOwner);
exResult = policy.execute(context);
Assert.assertFalse(exResult.getStatus());
MineTaxonomyComponent mockMine = Mockito.mock(MineTaxonomyComponent.class);
context = new PolicyContext();
context.setProperty(PolicyContext.PropertyName.TARGET_COMPONENT.getName(), mockMine);
exResult = policy.execute(context);
Assert.assertFalse(exResult.getStatus());