Package com.alibaba.json.bvt.parser.deser

Source Code of com.alibaba.json.bvt.parser.deser.TestASM_primitive

package com.alibaba.json.bvt.parser.deser;

import junit.framework.TestCase;

import org.junit.Assert;

import com.alibaba.fastjson.parser.ParserConfig;
import com.alibaba.fastjson.parser.deserializer.ASMDeserializerFactory;

public class TestASM_primitive extends TestCase {

    public void test_asm() throws Exception {
        ASMDeserializerFactory factory = new ASMDeserializerFactory();
        Exception error = null;
        try {
            factory.createJavaBeanDeserializer(ParserConfig.getGlobalInstance(), int.class, int.class);
        } catch (Exception ex) {
            error = ex;
        }
        Assert.assertNotNull(error);
    }

}
TOP

Related Classes of com.alibaba.json.bvt.parser.deser.TestASM_primitive

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.