/* ================================================================== * Created [2009-4-27 下午11:32:55] by Jon.King * ================================================================== * TSS * ================================================================== * mailTo:jinpujun@hotmail.com * Copyright (c) Jon.King, 2009-2012 * ================================================================== */ package com.jinhe.tss.core.exception; import junit.framework.Test; import junit.framework.TestSuite; public class ExceptionAllTests { public static Test suite() { TestSuite suite = new TestSuite("All tests from Exception of Core"); suite.addTestSuite(TestExceptionProcessor4Message.class); return suite; } }