diff --git a/trunk/test/com/jpexs/asdec/TestABCStream.java b/trunk/test/com/jpexs/decompiler/flash/TestABCStream.java similarity index 82% rename from trunk/test/com/jpexs/asdec/TestABCStream.java rename to trunk/test/com/jpexs/decompiler/flash/TestABCStream.java index af1530bf6..a75401297 100644 --- a/trunk/test/com/jpexs/asdec/TestABCStream.java +++ b/trunk/test/com/jpexs/decompiler/flash/TestABCStream.java @@ -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 diff --git a/trunk/test/com/jpexs/asdec/TestRecompile.java b/trunk/test/com/jpexs/decompiler/flash/TestRecompile.java similarity index 82% rename from trunk/test/com/jpexs/asdec/TestRecompile.java rename to trunk/test/com/jpexs/decompiler/flash/TestRecompile.java index a75bc8163..885b1aba3 100644 --- a/trunk/test/com/jpexs/asdec/TestRecompile.java +++ b/trunk/test/com/jpexs/decompiler/flash/TestRecompile.java @@ -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"; diff --git a/trunk/test/com/jpexs/asdec/TestSWFStream.java b/trunk/test/com/jpexs/decompiler/flash/TestSWFStream.java similarity index 94% rename from trunk/test/com/jpexs/asdec/TestSWFStream.java rename to trunk/test/com/jpexs/decompiler/flash/TestSWFStream.java index c7e02194d..4df3c54ed 100644 --- a/trunk/test/com/jpexs/asdec/TestSWFStream.java +++ b/trunk/test/com/jpexs/decompiler/flash/TestSWFStream.java @@ -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 {