Package smartrics.rest.fitnesse.fixture.support

Examples of smartrics.rest.fitnesse.fixture.support.TextBodyTypeAdapter


    @Test
    public void shouldDisplayXmlDataInActual() {
        SlimCell c = new SlimCell("<xml />");
        SlimFormatter formatter = new SlimFormatter();
        formatter.setDisplayActual(true);
        TextBodyTypeAdapter actual = new TextBodyTypeAdapter();
        actual.set("<xml />");
        formatter.check(c, actual);
        assertThat(c.body(), is(equalTo("pass:<div>" + Tools.toHtml("<xml />") + "</div>")));
    }
View Full Code Here

TOP

Related Classes of smartrics.rest.fitnesse.fixture.support.TextBodyTypeAdapter

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.