Package org.strecks.action.navigable

Examples of org.strecks.action.navigable.NavigableController


   */
  @Test
  public void testReadControllerClassAnnotations() throws Exception
  {

    NavigableController controller = new NavigableController();
    actionCreator.readControllerClassAnnotations(ActionWithNavigate.class, controller);

    NavigationHolder navigationHolder = controller.getNavigationHolder();
    assert navigationHolder != null;

  }
View Full Code Here


  public void testNoAnnotations() throws Exception
  {

    try
    {
      NavigableController controller = new NavigableController();
      actionCreator.readControllerClassAnnotations(ActionWithNoNavigate.class, controller);
    }
    catch (ApplicationConfigurationException e)
    {
      assertEquals(
View Full Code Here

TOP

Related Classes of org.strecks.action.navigable.NavigableController

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.