public void testCheckLHSLocationDeterminationINSIDE_CONDITION_START16() {
String input =
"rule MyRule \n" +
" when \n" +
" exists 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));
}