public void testCheckLHSLocationDetermination_INSIDE_CONDITION_START23() {
String input =
"rule MyRule \n" +
" when \n" +
" not ( exists name : Class (";
Location location = new CompletionContext(input).getLocation();
assertEquals(Location.LOCATION_LHS_INSIDE_CONDITION_START, location.getType());
assertEquals("Class", location.getProperty(Location.LOCATION_PROPERTY_CLASS_NAME));
}