Package atg.tools.dynunit.droplet.DropletInvoker

Examples of atg.tools.dynunit.droplet.DropletInvoker.RenderedOutputParameter


        );

        // use an old-fashioned for, because we want to test numeric
        // look-ups, too.
        for (int i = 0; i < strings.length; i++) {
            RenderedOutputParameter oparam = listOutputs.get(i);

            assertEquals(
                    "Should be the same as from the list ",
                    oparam,
                    result.getRenderedOutputParameter("output", i)
            );
            assertEquals(
                    "Element should be our string",
                    strings[i],
                    (String) oparam.getFrameParameter("element")
            );
            assertEquals(
                    "Index should be equal to i", i, oparam.getFrameParameter("index")
            );
            // make sure we can get at things through
            // getFrameParameterOfRenderedParameter
            assertEquals(
                    "Count should be i + 1", i + 1, result.getFrameParameterOfRenderedParameter(
View Full Code Here

TOP

Related Classes of atg.tools.dynunit.droplet.DropletInvoker.RenderedOutputParameter

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.