public void testCheckLHSLocationDetermination_INSIDE_CONDITION_OPERATOR7() {
String input =
"rule MyRule \n" +
" when \n" +
" Class ( name1 : property1 == \"value\", name : property ";
Location location = new CompletionContext(input).getLocation();
assertEquals(Location.LOCATION_LHS_INSIDE_CONDITION_OPERATOR, location.getType());
assertEquals("Class", location.getProperty(Location.LOCATION_PROPERTY_CLASS_NAME));
assertEquals("property", location.getProperty(Location.LOCATION_PROPERTY_PROPERTY_NAME));
}