fastoutputstreamtest.java

来自「嵌入式数据库Berkeley DB-4.5.20源代码」· Java 代码 · 共 74 行

JAVA
74
字号
/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2002-2006 *	Oracle Corporation.  All rights reserved. * * $Id: FastOutputStreamTest.java,v 12.3 2006/08/24 14:46:47 bostic Exp $ */package com.sleepycat.util.test;import junit.framework.Test;import junit.framework.TestCase;import junit.framework.TestSuite;import com.sleepycat.collections.test.DbTestUtil;import com.sleepycat.util.FastOutputStream;/** * @author Mark Hayes */public class FastOutputStreamTest extends TestCase {    public static void main(String[] args)        throws Exception {        junit.framework.TestResult tr =            junit.textui.TestRunner.run(suite());        if (tr.errorCount() > 0 ||            tr.failureCount() > 0) {            System.exit(1);        } else {            System.exit(0);        }    }    public static Test suite()        throws Exception {        TestSuite suite = new TestSuite(FastOutputStreamTest.class);        return suite;    }    public FastOutputStreamTest(String name) {        super(name);    }    public void setUp() {        DbTestUtil.printTestName("FastOutputStreamTest." + getName());    }    public void testBufferSizing()        throws Exception {        FastOutputStream fos = new FastOutputStream();        assertEquals            (FastOutputStream.DEFAULT_INIT_SIZE, fos.getBufferBytes().length);        /* Write X+1 bytes, expect array size 2X+1 */        fos.write(new byte[FastOutputStream.DEFAULT_INIT_SIZE + 1]);        assertEquals            ((FastOutputStream.DEFAULT_INIT_SIZE * 2) + 1,             fos.getBufferBytes().length);        /* Write X+1 bytes, expect array size 4X+3 = (2(2X+1) + 1) */        fos.write(new byte[FastOutputStream.DEFAULT_INIT_SIZE + 1]);        assertEquals            ((FastOutputStream.DEFAULT_INIT_SIZE * 4) + 3,             fos.getBufferBytes().length);    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?