fix for issue #72

Former-commit-id: 866b658eddb30ac1617d2d0d1729333a4864f753
This commit is contained in:
Jeremy Long
2014-02-18 19:36:20 -05:00
parent 6ec931fcd7
commit 6bfb709233

View File

@@ -17,12 +17,18 @@
*/ */
package org.owasp.dependencycheck.analyzer; package org.owasp.dependencycheck.analyzer;
import org.mortbay.log.Log;
import org.owasp.dependencycheck.analyzer.exception.AnalysisException; import org.owasp.dependencycheck.analyzer.exception.AnalysisException;
import java.io.File; import java.io.File;
import org.junit.After; import org.junit.After;
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue; import static org.junit.Assert.assertTrue;
import static org.junit.Assume.assumeFalse; import static org.junit.Assume.assumeFalse;
import org.junit.Assume;
import org.junit.Before; import org.junit.Before;
import org.junit.Test; import org.junit.Test;
import org.owasp.dependencycheck.dependency.Confidence; import org.owasp.dependencycheck.dependency.Confidence;
@@ -46,9 +52,14 @@ public class AssemblyAnalyzerTest {
* @throws Exception if anything goes sideways * @throws Exception if anything goes sideways
*/ */
@Before @Before
public void setUp() throws Exception { public void setUp() {
analyzer = new AssemblyAnalyzer(); try {
analyzer.initialize(); analyzer = new AssemblyAnalyzer();
analyzer.initialize();
} catch (Exception e) {
Log.warn("Exception setting up AssemblyAnalyzer. Tests will be incomplete");
Assume.assumeNoException("Is mono installed? TESTS WILL BE INCOMPLETE", e);
}
} }
/** /**