Skip to content

Commit

Permalink
added a new test case for strong updates
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenArzt committed May 6, 2014
1 parent f8b3c4c commit 53214cd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,16 @@ public InfoflowResults analyzeAPKFile(String fileName, boolean enableImplicitFlo
public void runTest1() throws IOException, XmlPullParserException {
InfoflowResults res = analyzeAPKFile
("testAPKs/9458cfb51c90130938abcef7173c3f6d44a02720.apk", false, false, false);
Assert.assertNotNull(res);
Assert.assertTrue(res.size() > 0);
}

@Test
public void runTest2() throws IOException, XmlPullParserException {
InfoflowResults res = analyzeAPKFile
("testAPKs/enriched1.apk", false, false, false);
Assert.assertNotNull(res);
Assert.assertEquals(2, res.size());
}

}
Binary file added testAPKs/enriched1.apk
Binary file not shown.

0 comments on commit 53214cd

Please sign in to comment.