@org.junit.Test
 public void testGeneratePhysicalNodeIdFromNodeLocationProperty() throws Exception {
   when(property.getPropertyValues()).thenReturn(propertyValues);
   when(property.getPropertyValues().getStringValue()).thenReturn(stringValueList);
   when(property.getPropertyValues().getStringValue().get(0).getValue())
       .thenReturn(new String("test:"));
   Assert.assertEquals(
       intentResolverUtils.generatePhysicalNodeIdFromNodeLocationProperty(property),
       new PhysicalNodeId(new String("test")));
 }