* Checks that given collection has given texts (each collection element EQUALS TO corresponding text)
*
* <p>NB! Ignores multiple whitespaces between words</p>
*/
public static CollectionCondition exactTexts(final String... expectedTexts) {
return new ExactTexts(expectedTexts);
}