📄 exceptionwrappertest.java
字号:
/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2002-2004 * Sleepycat Software. All rights reserved. * * $Id: ExceptionWrapperTest.java,v 1.1 2004/04/09 16:34:10 mark Exp $ */package com.sleepycat.util.test;import java.io.IOException;import junit.framework.Test;import junit.framework.TestCase;import junit.framework.TestSuite;import com.sleepycat.collections.test.DbTestUtil;import com.sleepycat.util.ExceptionUnwrapper;import com.sleepycat.util.IOExceptionWrapper;import com.sleepycat.util.RuntimeExceptionWrapper;/** * @author Mark Hayes */public class ExceptionWrapperTest 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(ExceptionWrapperTest.class); return suite; } public ExceptionWrapperTest(String name) { super(name); } public void setUp() { DbTestUtil.printTestName("ExceptionWrapperTest." + getName()); } public void testIOWrapper() throws Exception { try { throw new IOExceptionWrapper(new RuntimeException("msg")); } catch (IOException e) { Exception ee = ExceptionUnwrapper.unwrap(e); assertTrue(ee instanceof RuntimeException); assertEquals("msg", ee.getMessage()); Throwable t = ExceptionUnwrapper.unwrapAny(e); assertTrue(t instanceof RuntimeException); assertEquals("msg", t.getMessage()); } } public void testRuntimeWrapper() throws Exception { try { throw new RuntimeExceptionWrapper(new IOException("msg")); } catch (RuntimeException e) { Exception ee = ExceptionUnwrapper.unwrap(e); assertTrue(ee instanceof IOException); assertEquals("msg", ee.getMessage()); Throwable t = ExceptionUnwrapper.unwrapAny(e); assertTrue(t instanceof IOException); assertEquals("msg", t.getMessage()); } } public void testErrorWrapper() throws Exception { try { throw new RuntimeExceptionWrapper(new Error("msg")); } catch (RuntimeException e) { try { ExceptionUnwrapper.unwrap(e); fail(); } catch (Error ee) { assertTrue(ee instanceof Error); assertEquals("msg", ee.getMessage()); } Throwable t = ExceptionUnwrapper.unwrapAny(e); assertTrue(t instanceof Error); assertEquals("msg", t.getMessage()); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -