disabled debug info during tests

This commit is contained in:
Jindra Petk
2014-05-04 17:04:59 +02:00
parent 1d636c23c9
commit f5c499a923
9 changed files with 36 additions and 0 deletions

View File

@@ -18,11 +18,13 @@ package com.jpexs.decompiler.flash;
import com.jpexs.decompiler.flash.abc.ABCInputStream;
import com.jpexs.decompiler.flash.abc.ABCOutputStream;
import com.jpexs.decompiler.flash.gui.Main;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import static org.testng.Assert.assertEquals;
import static org.testng.Assert.fail;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
/**
@@ -30,6 +32,10 @@ import org.testng.annotations.Test;
* @author JPEXS
*/
public class ABCStreamTest {
@BeforeClass
public void init(){
Main.initLogging(false);
}
@Test
public void testU30() {