Examples of CiteBehavior


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

*/
public class CiteBehaviorTest extends WicketApplicationTest {

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

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

        startBehaviorInPage(new CiteBehavior());
    }

    @Test
    public void isRenderedWithoutException() {
        tester().startComponentInPage(new WebMarkupContainer(id()).add(new CiteBehavior()), 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.