Package com.alibaba.fastjson.support.odps.udf

Examples of com.alibaba.fastjson.support.odps.udf.JSONContains.evaluate()


public class JSONContains_Test extends TestCase {

    public void test_contians() throws Exception {
        JSONContains udf = new JSONContains();
        Assert.assertTrue(udf.evaluate("{\"name\":\"123\"}", "$.name"));
        Assert.assertFalse(udf.evaluate("{\"name\":\"123\"}", "$.value"));
    }

}
View Full Code Here


public class JSONContains_Test extends TestCase {

    public void test_contians() throws Exception {
        JSONContains udf = new JSONContains();
        Assert.assertTrue(udf.evaluate("{\"name\":\"123\"}", "$.name"));
        Assert.assertFalse(udf.evaluate("{\"name\":\"123\"}", "$.value"));
    }

}
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.