public void testCheckLHSLocationDetermination_INSIDE_CONDITION_ARGUMENT1() {
String input =
"rule MyRule \n" +
" when \n" +
" Class ( property == ";
Location location = new CompletionContext(input).getLocation();
assertEquals(Location.LOCATION_LHS_INSIDE_CONDITION_ARGUMENT, location.getType());
assertEquals("Class", location.getProperty(Location.LOCATION_PROPERTY_CLASS_NAME));
assertEquals("property", location.getProperty(Location.LOCATION_PROPERTY_PROPERTY_NAME));
assertEquals("==", location.getProperty(Location.LOCATION_PROPERTY_OPERATOR));
}