Add isSame(). I guess I changed the methods being tested too.

This commit is contained in:
Adam
2016-01-03 18:38:37 -05:00
parent d029c128e3
commit 261e195ea5
12 changed files with 94 additions and 9 deletions

View File

@@ -28,8 +28,8 @@ public class MapStaticTest
ClassGroup group1 = JarUtil.loadJar(new File("d:/rs/07/adamin1.jar"));
ClassGroup group2 = JarUtil.loadJar(new File("d:/rs/07/adamin2.jar"));
Method m1 = group1.findClass("client").findMethod("vmethod3050");
Method m2 = group2.findClass("client").findMethod("vmethod3007");
Method m1 = group1.findClass("client").findMethod("vmethod3054");
Method m2 = group2.findClass("client").findMethod("vmethod2973");
ParallelExecutorMapping mappings = MappingExecutorUtil.map(m1, m2);
}