ditchbasetestcase.java

来自「tabs tag 多tab标签 很好用 在页面上做选项卡效果的时候,直接使」· Java 代码 · 共 38 行

JAVA
38
字号
/* * The contents of this file are subject to the GNU Lesser General Public * License Version 2.1 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.gnu.org/copyleft/lesser.html * * Software distributed under the License is distributed on an "AS * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or * implied. See the License for the specific language governing * rights and limitations under the License. * * Developer: * Todd Ditchendorf, todd@ditchnet.org * */package org.ditchnet.test;import junit.framework.TestCase;public abstract class DitchBaseTestCase extends TestCase {	public DitchBaseTestCase(String name) {		super(name);	}		protected void dump(String message) {		System.out.println(message);	}		protected void dump (String message0,String message1) {		System.out.println(message0);		System.out.println(message1);	}	}

⌨️ 快捷键说明

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