assertTrue("The charset parameter of the ContentType is invalid", charset == null);
}
public void testUnparsing1() throws Exception
{
ContentType contentType = new ContentType();
contentType.setBaseType("text");
contentType.setSubType("html");
contentType.setParameter("charset", "utf-8");
assertEquals(
"ContentType does not generate a valid String representation",
"text/html;charset=utf-8",
contentType.unparse());
}