Skip to content

Commit d027e75

Browse files
committed
disabled test case due to missing APK file
1 parent 03007f8 commit d027e75

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed
Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
11
package soot.jimple.infoflow.android.test.droidBench;
22

3+
import java.io.IOException;
4+
35
import org.junit.Assert;
6+
import org.junit.Ignore;
47
import org.junit.Test;
58
import org.xmlpull.v1.XmlPullParserException;
6-
import soot.jimple.infoflow.results.InfoflowResults;
79

8-
import java.io.IOException;
10+
import soot.jimple.infoflow.results.InfoflowResults;
911

1012
public class FieldSourceTest extends JUnitTests {
1113

12-
@Test
13-
public void runTestFlowSensitivity1() throws IOException, XmlPullParserException {
14-
InfoflowResults res = analyzeAPKFile("FieldSource/FieldSourceTest.apk");
15-
Assert.assertNotNull(res);
16-
}
14+
@Test
15+
@Ignore("APK file missing")
16+
public void runTestFlowSensitivity1() throws IOException, XmlPullParserException {
17+
InfoflowResults res = analyzeAPKFile("FieldSource/FieldSourceTest.apk");
18+
Assert.assertNotNull(res);
19+
}
1720
}

0 commit comments

Comments
 (0)