Triggers a pass if the texts were found in order in the raw content.
$texts: Array of raw strings to look for .
$message: Message to display.
TRUE on pass, FALSE on fail.
function assertBatchMessages($texts, $message) {
$pattern = '|' . implode('.*', $texts) . '|s';
return $this
->assertPattern($pattern, $message);
}