Package com.alibaba.fastjson.util

Examples of com.alibaba.fastjson.util.ASMUtils


        Assert.assertEquals("[J", ASMUtils.getDesc(long[].class));
        Assert.assertEquals("[Ljava/lang/Long;", ASMUtils.getDesc(Long[].class));
    }

    public void test_error_1() throws Exception {
        new ASMUtils();

        Exception error = null;
        try {
            ASMUtils.getPrimitiveLetter(Long.class);
        } catch (Exception ex) {
View Full Code Here


        Assert.assertEquals("[J", ASMUtils.getDesc(long[].class));
        Assert.assertEquals("[Ljava/lang/Long;", ASMUtils.getDesc(Long[].class));
    }

    public void test_error_1() throws Exception {
        new ASMUtils();

        Exception error = null;
        try {
            ASMUtils.getPrimitiveLetter(Long.class);
        } catch (Exception ex) {
View Full Code Here

TOP

Related Classes of com.alibaba.fastjson.util.ASMUtils

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.