final String childAttributeValue = "childvalue";
final String childActualAttributeValue = "${actualvalue}";
final Map<String,Object> actualContext = Collections.<String,Object>singletonMap("key","value");
final Set<String> inheritedKeys = new HashSet<>(Arrays.asList("key","inheritedkey"));
Model model = createTestModel();
TestChild mockChild = mock(TestChild.class);
when(mockChild.getModel()).thenReturn(model);
when(_configuredObject.getModel()).thenReturn(model);
when(_configuredObject.getAttributeNames()).thenReturn(Collections.singletonList(ConfiguredObject.CONTEXT));