Hi, I am trying to execute simple test case, but getting an error. Below
is my test case :@Rulepublic AemContext context = new
AemContext();@Testpublic void test() throws Exception { Resource
currentResource = context.create().resource("/content/app/en-us/page",
"jcr:title", "Title Page", "width", "5","height","9");
inheritanceValueMap = Mockito.spy(new
HierarchyNodeInheritanceValueMap(currentResource));
Assert.assertThat(inheritanceValueMap.getInherited("width",
StringUtils.EMPTY), Is.is("5"));...