Package com.alibaba.json.bvt.serializer.stream

Source Code of com.alibaba.json.bvt.serializer.stream.StreamWriterTest_writeInt

package com.alibaba.json.bvt.serializer.stream;

import java.io.StringWriter;

import org.junit.Assert;
import junit.framework.TestCase;

import com.alibaba.fastjson.serializer.SerializeWriter;


public class StreamWriterTest_writeInt extends TestCase {
    public void test_0() throws Exception {
        StringWriter out = new StringWriter();
       
        SerializeWriter writer = new SerializeWriter(out, 10);
        Assert.assertEquals(10, writer.getBufferLength());
       
        writer.write("abcde");
        writer.writeInt(12345678);
        writer.close();
       
        String text = out.toString();
        Assert.assertEquals("abcde12345678", text);
    }
}
TOP

Related Classes of com.alibaba.json.bvt.serializer.stream.StreamWriterTest_writeInt

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.