Package com.mycompany

Source Code of com.mycompany.TestHomePage

package com.mycompany;

import org.apache.wicket.util.tester.WicketTester;
import org.junit.Before;
import org.junit.Test;

/**
* Simple test using the WicketTester
*/
public class TestHomePage
{
  private WicketTester tester;

  @Before
  public void setUp()
  {
    tester = new WicketTester(new WicketApplication());
  }

  @Test
  public void homepageRendersSuccessfully()
  {
    //start and render the test page
    tester.startPage(HomePage.class);

    //assert rendered page class
    tester.assertRenderedPage(HomePage.class);
  }
}
TOP

Related Classes of com.mycompany.TestHomePage

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.