Another method

This commit is contained in:
Adam
2016-01-11 08:44:49 -05:00
parent f418d95b84
commit 44372c8696
2 changed files with 33 additions and 6 deletions

View File

@@ -14,6 +14,7 @@ public class MapStaticTest
{ "client.vmethod3054", "client.vmethod2973" },
{ "class99.method2220", "class99.method2149" },
{ "class146.vmethod3158", "class146.vmethod3070" },
{ "class166.method3315", "class166.method3254" },
};
//@Test
@@ -31,8 +32,8 @@ public class MapStaticTest
//@Test
public void testAll() throws IOException
{
ClassGroup group1 = JarUtil.loadJar(new File("d:/rs/07/adamin1.jar"));
ClassGroup group2 = JarUtil.loadJar(new File("d:/rs/07/adamin2.jar"));
ClassGroup group1 = JarUtil.loadJar(new File("c:/rs/adamin1.jar"));
ClassGroup group2 = JarUtil.loadJar(new File("c:/rs/adamin2.jar"));
for (String[] s : methods)
{
@@ -48,11 +49,11 @@ public class MapStaticTest
@Test
public void test() throws IOException
{
ClassGroup group1 = JarUtil.loadJar(new File("d:/rs/07/adamin1.jar"));
ClassGroup group2 = JarUtil.loadJar(new File("d:/rs/07/adamin2.jar"));
ClassGroup group1 = JarUtil.loadJar(new File("c:/rs/adamin1.jar"));
ClassGroup group2 = JarUtil.loadJar(new File("c:/rs/adamin2.jar"));
Method m1 = group1.findClass("class146").findMethod("vmethod3158");
Method m2 = group2.findClass("class146").findMethod("vmethod3070");
Method m1 = group1.findClass("class166").findMethod("method3315");
Method m2 = group2.findClass("class166").findMethod("method3254");
ParallelExecutorMapping mappings = MappingExecutorUtil.map(m1, m2);
}