public void testCheckLHSLocationDetermination_BEGIN_OF_CONDITION_AND_OR24() {
String input =
"rule MyRule \n" +
" when \n" +
" name : Class ( name: property ) or ";
Location location = new CompletionContext(input).getLocation();
assertEquals(Location.LOCATION_LHS_BEGIN_OF_CONDITION_AND_OR, location.getType());
}