Project renamed to Free Flash Decompiler.

Test code moved to new dir.
This commit is contained in:
Jindra Pet��k
2013-02-17 18:14:25 +01:00
parent 6ca95c8e34
commit 9338f2a4df
3 changed files with 15 additions and 14 deletions
@@ -1,13 +1,12 @@
package com.jpexs.asdec;
import com.jpexs.asdec.abc.ABCInputStream;
import com.jpexs.asdec.abc.ABCOutputStream;
import junit.framework.TestCase;
import org.junit.Test;
package com.jpexs.decompiler.flash;
import com.jpexs.decompiler.flash.abc.ABCInputStream;
import com.jpexs.decompiler.flash.abc.ABCOutputStream;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import junit.framework.TestCase;
import org.junit.Test;
public class TestABCStream extends TestCase {
@Test
@@ -1,11 +1,12 @@
package com.jpexs.asdec;
package com.jpexs.decompiler.flash;
import com.jpexs.asdec.abc.NotSameException;
import com.jpexs.decompiler.flash.SWF;
import com.jpexs.decompiler.flash.Main;
import com.jpexs.decompiler.flash.abc.NotSameException;
import java.io.*;
import junit.framework.TestCase;
import org.junit.Test;
import java.io.*;
public class TestRecompile extends TestCase {
public static final String TESTDATADIR = "testdata";
@@ -1,11 +1,12 @@
package com.jpexs.asdec;
import junit.framework.TestCase;
import org.junit.Test;
package com.jpexs.decompiler.flash;
import com.jpexs.decompiler.flash.SWFInputStream;
import com.jpexs.decompiler.flash.SWFOutputStream;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import junit.framework.TestCase;
import org.junit.Test;
public class TestSWFStream extends TestCase {