Skip to content

Commit 4f59ff3

Browse files
Update EVMTaintAbstractSemantics
1 parent bac5d57 commit 4f59ff3

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

src/test/java/it/unipr/analysis/cron/EVMTaintAbstractSemantics.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,28 @@ public void testTaint01() throws AnalysisSetupException, IOException {
6868
CronConfiguration conf = createConfiguration("taint", "example", "example.sol", false);
6969
perform(conf);
7070
}
71+
72+
@Test
73+
public void testTaint02() throws AnalysisSetupException, IOException {
74+
CronConfiguration conf = createConfiguration("taint", "example02", "example02.sol", false);
75+
perform(conf);
76+
}
77+
78+
@Test
79+
public void testTaint03() throws AnalysisSetupException, IOException {
80+
CronConfiguration conf = createConfiguration("taint", "example03", "example03.sol", false);
81+
perform(conf);
82+
}
83+
84+
@Test
85+
public void testTaint04() throws AnalysisSetupException, IOException {
86+
CronConfiguration conf = createConfiguration("taint", "example04", "example04.sol", false);
87+
perform(conf);
88+
}
89+
90+
@Test
91+
public void testTaint05() throws AnalysisSetupException, IOException {
92+
CronConfiguration conf = createConfiguration("taint", "example05", "example05.sol", false);
93+
perform(conf);
94+
}
7195
}

0 commit comments

Comments
 (0)