/**
* Test no text returns empty string.
*/
public void testCollapsed1 ()
{
StringBean sb;
sb = new StringBean ();
sb.setLinks (false);
sb.setReplaceNonBreakingSpaces (true);
sb.setCollapse (false);
check (sb, "<html><head></head><body></body></html>", "");
check (sb, "<html><head></head><body> </body></html>", " ");
check (sb, "<html><head></head><body>\t</body></html>", "\t");
sb.setCollapse (true);
check (sb, "<html><head></head><body></body></html>", "");
check (sb, "<html><head></head><body> </body></html>", "");
check (sb, "<html><head></head><body>\t</body></html>", "");
}