Add graphbuilder to statically build graph

This commit is contained in:
Adam
2015-12-12 15:19:55 -05:00
parent 540c1ac5af
commit 3ce0b0a7b9
4 changed files with 226 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
package net.runelite.deob.deobfuscators.rename.graph;
import java.io.File;
import java.io.IOException;
import net.runelite.deob.ClassGroup;
import net.runelite.deob.util.JarUtil;
import org.junit.Test;
public class GraphBuilderTest
{
@Test
public void test() throws IOException
{
ClassGroup group = JarUtil.loadJar(new File("d:/rs/07/adamin2.jar"));
GraphBuilder.build(group);
}
}