Package com.alibaba.json.bvt.path.odps_udf

Source Code of com.alibaba.json.bvt.path.odps_udf.JSONContains_Test

package com.alibaba.json.bvt.path.odps_udf;

import org.junit.Assert;

import junit.framework.TestCase;

import com.alibaba.fastjson.support.odps.udf.JSONContains;

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"));
    }

}
TOP

Related Classes of com.alibaba.json.bvt.path.odps_udf.JSONContains_Test

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.