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