* for more information)</li>
* <li>The "bold" property, if present, must be placed before the "color" property</li>
* </ul>
*/
public Assertion contentEquals(final String expectedContents) {
return new Assertion() {
public void check() {
String trimmedExpected = expectedContents.trim();
AssertAdapter.assertTrue("Expected tree description should not be empty",
(trimmedExpected != null) && (trimmedExpected.length() > 0));
checkContents(trimmedExpected);