Package net.masterthought.cucumber.json

Examples of net.masterthought.cucumber.json.DocString


                                                    "</div>"));
    }

    @Test
    public void shouldEscapeForHtml() throws NoSuchFieldException, IllegalAccessException {
        DocString ds = new DocString();
        Field field = DocString.class.getDeclaredField("value");
        field.setAccessible(true);
        field.set(ds, "<a><b>cat</b></a>");
        assertThat("&lt;a&gt;&lt;b&gt;cat&lt;/b&gt;&lt;/a&gt;", is(ds.getEscapedValue()));
    }
View Full Code Here

TOP

Related Classes of net.masterthought.cucumber.json.DocString

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.