Package com.volantis.mcs.expression.functions.device

Examples of com.volantis.mcs.expression.functions.device.GetPolicyValueFunction


    static String FUNCTION_QNAME = "device:getPolicyValue";

    // javadoc inherited
    protected AbstractFunction
            createTestableFunction(ExpressionFactory factory) {
        return new GetPolicyValueFunction();
    }
View Full Code Here


     * @throws Exception if an error occurs
     */
    public void testInvokeNoParameters() throws Exception {
        try {

            GetPolicyValueFunction function =
                    (GetPolicyValueFunction)createTestableFunction(
                            ExpressionFactory.getDefaultInstance());

            // invoke the function
            function.invoke(expressionContext, new Value[0]);

            // invoking function with no arguments shold resutl in exception
            // being thrown
            fail("Invoking getPolicyValue() function with no arguments " +
                 "should result in an exception being thrown");
View Full Code Here

TOP

Related Classes of com.volantis.mcs.expression.functions.device.GetPolicyValueFunction

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.