From d842c4f1139629c1f062b74ba818d233b2c31043 Mon Sep 17 00:00:00 2001 From: wisberg Date: Mon, 16 Dec 2002 17:58:19 +0000 Subject: initial version --- asm/testsrc/AsmModuleTests.java | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 asm/testsrc/AsmModuleTests.java (limited to 'asm/testsrc') diff --git a/asm/testsrc/AsmModuleTests.java b/asm/testsrc/AsmModuleTests.java new file mode 100644 index 000000000..e690cb536 --- /dev/null +++ b/asm/testsrc/AsmModuleTests.java @@ -0,0 +1,30 @@ +/* ******************************************************************* + * Copyright (c) 1999-2001 Xerox Corporation, + * 2002 Palo Alto Research Center, Incorporated (PARC). + * All rights reserved. + * This program and the accompanying materials are made available + * under the terms of the Common Public License v1.0 + * which accompanies this distribution and is available at + * http://www.eclipse.org/legal/cpl-v10.html + * + * Contributors: + * Xerox/PARC initial implementation + * ******************************************************************/ + + +// default package + +import junit.framework.*; + +public class AsmModuleTests extends TestCase { + + public static Test suite() { + TestSuite suite = new TestSuite(AsmModuleTests.class.getName()); + suite.addTestSuite(AsmModuleTests.class); + return suite; + } + + public AsmModuleTests(String name) { super(name); } + + public void testNothing() {} +} -- cgit v1.2.3