//so now we have 6 Locations in the index, in LocationGroup "floor":
assertFoundLocations( fullTextSession, "floor", 6 );
assertFoundLocations( fullTextSession, "airport", 0 );
//changing the locationGroup name to Airport:
updateLocationGroupName( fullTextSession );
fullTextSession.clear();
//check index functionality:
assertFoundLocations( fullTextSession, "floor", 0 );
assertFoundLocations( fullTextSession, "airport", 6 );
//six locations have been loaded for re-indexing:
assertLocationsLoaded( 6 );