public void testFromStringStrong() throws Exception {
checkFromString("\"Hello \\\"World\\\"\"", new EntityTag("Hello \"World\""));
}
private void checkToString(final EntityTag e, final String result) {
final EntityTagProvider instance = new EntityTagProvider();
assertEquals(result, instance.toString(e));
}