Package org.apache.velocity.tools.generic

Examples of org.apache.velocity.tools.generic.Alternator.shift()


    {
        AlternatorTool tool = new AlternatorTool();
        Alternator result = tool.make(false, new Object[] { "red", "blue" });
        assertEquals("red", result.toString());
        assertEquals("red", result.toString());
        result.shift();
        assertEquals("blue", result.toString());
    }

    public @Test void methodAuto_ObjectVarArgs() throws Exception
    {
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.