From 0f47403d0220757fed189b76e2071e25b1025cb8 Mon Sep 17 00:00:00 2001 From: Runemoro Date: Wed, 3 Jun 2020 13:39:42 -0400 Subject: Split GUI code to separate module (#242) * Split into modules * Post merge compile fixes Co-authored-by: modmuss50 --- src/test/java/cuchaz/enigma/TestDeobfuscator.java | 41 ----------------------- 1 file changed, 41 deletions(-) delete mode 100644 src/test/java/cuchaz/enigma/TestDeobfuscator.java (limited to 'src/test/java/cuchaz/enigma/TestDeobfuscator.java') diff --git a/src/test/java/cuchaz/enigma/TestDeobfuscator.java b/src/test/java/cuchaz/enigma/TestDeobfuscator.java deleted file mode 100644 index 6619d26..0000000 --- a/src/test/java/cuchaz/enigma/TestDeobfuscator.java +++ /dev/null @@ -1,41 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2015 Jeff Martin. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the GNU Lesser General Public - * License v3.0 which accompanies this distribution, and is available at - * http://www.gnu.org/licenses/lgpl.html - * - * Contributors: - * Jeff Martin - initial API and implementation - ******************************************************************************/ - -package cuchaz.enigma; - -import cuchaz.enigma.source.Decompiler; -import cuchaz.enigma.source.Decompilers; -import cuchaz.enigma.source.SourceSettings; -import org.junit.Test; - -import java.io.IOException; -import java.nio.file.Paths; - -public class TestDeobfuscator { - private EnigmaProject openProject() throws IOException { - Enigma enigma = Enigma.create(); - return enigma.openJar(Paths.get("build/test-obf/loneClass.jar"), ProgressListener.none()); - } - - @Test - public void loadJar() - throws Exception { - openProject(); - } - - @Test - public void decompileClass() throws Exception { - EnigmaProject project = openProject(); - Decompiler decompiler = Decompilers.PROCYON.create(project.getClassCache(), new SourceSettings(false, false)); - - decompiler.getSource("a").asString(); - } -} -- cgit v1.2.3