public void testCheckLHSLocationDetermination_INSIDE_CONDITION_START3() {
String input =
"rule MyRule \n" +
" when \n" +
" Class ( name.subProperty['test'].subsu";
Location location = new CompletionContext(input).getLocation();
assertEquals(Location.LOCATION_LHS_INSIDE_CONDITION_START, location.getType());
assertEquals("Class", location.getProperty(Location.LOCATION_PROPERTY_CLASS_NAME));
assertEquals("name.subProperty[\"test\"].subsu", location.getProperty(Location.LOCATION_PROPERTY_PROPERTY_NAME));
}