Examples of Cite


Examples of de.agilecoders.wicket.core.markup.html.bootstrap.block.Cite

*/
public class CiteTest extends WicketApplicationTest {

    @Test(expected = MarkupException.class)
    public void tagNameIsAsserted() {
        startComponentInPage(new Cite(id()));
    }
View Full Code Here

Examples of de.agilecoders.wicket.core.markup.html.bootstrap.block.Cite

        startComponentInPage(new Cite(id()));
    }

    @Test
    public void isRenderedWithoutException() {
        tester().startComponentInPage(new Cite(id()), Markup.of("<cite wicket:id='id'>Cite</cite>"));

        tester().assertNoErrorMessage();
        tester().assertVisible(id());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.