Package jodd.madvoc

Source Code of jodd.madvoc.AnnArgTest

// Copyright (c) 2003-2014, Jodd Team (jodd.org). All Rights Reserved.

package jodd.madvoc;

import jodd.madvoc.component.ActionMethodParser;
import org.junit.Test;

import static org.junit.Assert.assertNotNull;

public class AnnArgTest extends MadvocTestCase {

  @Test
  public void testDefaultMethods() {
    WebApplication webapp = new WebApplication(true);
    webapp.registerMadvocComponents();
    ActionMethodParser actionMethodParser = webapp.getComponent(ActionMethodParser.class);

    ActionConfig cfg = parse(actionMethodParser, "tst.SuperAction#add");

    assertNotNull(cfg);
  }

}
TOP

Related Classes of jodd.madvoc.AnnArgTest

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.