Change record status: 
Project: 
Introduced in branch: 
8.0.x
Description: 

Two methods have been added to AssertContentTrait to test whether escaped text is present on a page (or not).

The following assertions

Drupal 7

$this->assertRaw(check_plan($string1));
$this->assertNoRaw(check_plain($string2));

Drupal 8 - before

$this->assertRaw(Html::escape($string1));
$this->assertNoRaw(Html::escape($string2));

Can be replaced with

$this->assertEscaped($string1);
$this->assertNoEscaped($string2);
Impacts: 
Module developers
Themers
Updates Done (doc team, etc.)
Online documentation: 
Not done
Theming guide: 
Not done
Module developer documentation: 
Not done
Examples project: 
Not done
Coder Review: 
Not done
Coder Upgrade: 
Not done
Other: 
Other updates done