aboutsummaryrefslogtreecommitdiffstats
path: root/asm/testsrc
diff options
context:
space:
mode:
authorAndy Clement <aclement@pivotal.io>2019-01-23 19:36:37 -0800
committerAndy Clement <aclement@pivotal.io>2019-01-23 19:36:37 -0800
commitd9cd0d44e8c42f06e13b033ae1cc269d3e7f7c29 (patch)
tree821258f70f7f28e3e96faa82379708a038c84128 /asm/testsrc
parent9803f22ec4337779057f4ec2ace35f2d6483d6dd (diff)
downloadaspectj-d9cd0d44e8c42f06e13b033ae1cc269d3e7f7c29.tar.gz
aspectj-d9cd0d44e8c42f06e13b033ae1cc269d3e7f7c29.zip
mavenizing asm module - wip
Diffstat (limited to 'asm/testsrc')
-rw-r--r--asm/testsrc/org/aspectj/asm/AsmModuleTests.java34
-rw-r--r--asm/testsrc/org/aspectj/asm/NameConvertorTest.java86
2 files changed, 0 insertions, 120 deletions
diff --git a/asm/testsrc/org/aspectj/asm/AsmModuleTests.java b/asm/testsrc/org/aspectj/asm/AsmModuleTests.java
deleted file mode 100644
index ebb500911..000000000
--- a/asm/testsrc/org/aspectj/asm/AsmModuleTests.java
+++ /dev/null
@@ -1,34 +0,0 @@
-package org.aspectj.asm;
-/* *******************************************************************
- * 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 Eclipse Public License v1.0
- * which accompanies this distribution and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Xerox/PARC initial implementation
- * ******************************************************************/
-
-
-// default package
-
-import org.aspectj.asm.NameConvertorTest;
-
-import junit.framework.*;
-
-public class AsmModuleTests extends TestCase {
-
- public static TestSuite suite() {
- TestSuite suite = new TestSuite(AsmModuleTests.class.getName());
- suite.addTestSuite(AsmModuleTests.class);
- suite.addTestSuite(NameConvertorTest.class);
- return suite;
- }
-
- public AsmModuleTests(String name) { super(name); }
-
- public void testNothing() {}
-}
diff --git a/asm/testsrc/org/aspectj/asm/NameConvertorTest.java b/asm/testsrc/org/aspectj/asm/NameConvertorTest.java
deleted file mode 100644
index 22ac3fb79..000000000
--- a/asm/testsrc/org/aspectj/asm/NameConvertorTest.java
+++ /dev/null
@@ -1,86 +0,0 @@
-/********************************************************************
- * Copyright (c) 2006 Contributors. All rights reserved.
- * This program and the accompanying materials are made available
- * under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution and is available at
- * http://eclipse.org/legal/epl-v10.html
- *
- * Contributors: IBM Corporation - initial API and implementation
- * Helen Hawkins - initial version
- *******************************************************************/
-package org.aspectj.asm;
-
-import junit.framework.TestCase;
-
-import org.aspectj.asm.internal.CharOperation;
-import org.aspectj.asm.internal.NameConvertor;
-
-public class NameConvertorTest extends TestCase {
-
- public void testBoolean() {
- checkConversion("Z", "boolean");
- }
-
- public void testByte() {
- checkConversion("B", "byte");
- }
-
- public void testChar() {
- checkConversion("C", "char");
- }
-
- public void testDouble() {
- checkConversion("D", "double");
- }
-
- public void testFloat() {
- checkConversion("F", "float");
- }
-
- public void testInt() {
- checkConversion("I", "int");
- }
-
- public void testLong() {
- checkConversion("J", "long");
- }
-
- public void testShort() {
- checkConversion("S", "short");
- }
-
- public void testString() {
- checkConversion("Ljava/lang/String;", "java.lang.String");
- }
-
- public void testType() {
- checkConversion("LMyClass;", "MyClass");
- }
-
- public void testListPameterizedWithString() {
- checkConversion("Pjava/util/List<Ljava/lang/String;>;", "java.util.List<java.lang.String>");
- }
-
- public void testClassParameterizedWithStringAndType() {
- checkConversion("PMyGenericClass<Ljava/lang/String;LMyClass;>;", "MyGenericClass<java.lang.String,MyClass>");
- }
-
- public void testStringArray() {
- checkConversion("[Ljava/lang/String;", "java.lang.String[]");
- }
-
- public void testTwoDimensionalStringArray() {
- checkConversion("[[Ljava/lang/String;", "java.lang.String[][]");
- }
-
- public void testIntArray() {
- checkConversion("[I", "int[]");
- }
-
- private void checkConversion(String signature, String expected) {
- char[] c = NameConvertor.convertFromSignature(signature.toCharArray());
- assertTrue("converting " + signature + ", expected " + expected + "," + "but found " + String.valueOf(c), CharOperation
- .equals(c, expected.toCharArray()));
- }
-
-}