Package com.test

Examples of com.test.HelloAction


        extraContext.put("attr", attrMap);
    }

    public void testGetUserName() {
        try {
            HelloAction action = execute();

            String userName = action.getUserName();
            assertEquals(userName, "����1");
        } catch (Throwable e) {
            e.printStackTrace();
        }
    }
View Full Code Here


        }
    }

    public void testGetNow() {
        try {
            HelloAction action = execute();

            Date now = action.getNow();
            System.out.println(now);
            assertNotNull(now);

        } catch (Throwable e) {
            e.printStackTrace();
View Full Code Here

TOP

Related Classes of com.test.HelloAction

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.