-
-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added testcase for incomplete concreteDispatch in which the concrete …
…method is in the missing class. Changed the test to use the bytecode frontend
- Loading branch information
1 parent
3113dcf
commit a75d56e
Showing
10 changed files
with
40 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
...graph/src/test/resources/callgraph/ConcreteDispatch/ConcreteCallSuperClassIncomplete.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// cvc/Class.java | ||
package cvcscincomplete; | ||
|
||
class Class extends SuperClass{ | ||
|
||
public static void main(String[] args){ | ||
Class cls = new Class(); | ||
cls.target(); | ||
} | ||
} | ||
|
||
//class file of the superclass is not in the inputlocation | ||
class SuperClass { | ||
|
||
public void target(){ } | ||
|
||
} |
Binary file added
BIN
+225 Bytes
sootup.callgraph/src/test/resources/callgraph/ConcreteDispatch/binary/A.class
Binary file not shown.
Binary file added
BIN
+285 Bytes
sootup.callgraph/src/test/resources/callgraph/ConcreteDispatch/binary/B.class
Binary file not shown.
Binary file added
BIN
+185 Bytes
sootup.callgraph/src/test/resources/callgraph/ConcreteDispatch/binary/C.class
Binary file not shown.
Binary file added
BIN
+170 Bytes
sootup.callgraph/src/test/resources/callgraph/ConcreteDispatch/binary/D.class
Binary file not shown.
Binary file added
BIN
+186 Bytes
sootup.callgraph/src/test/resources/callgraph/ConcreteDispatch/binary/I.class
Binary file not shown.
Binary file added
BIN
+246 Bytes
sootup.callgraph/src/test/resources/callgraph/ConcreteDispatch/binary/J.class
Binary file not shown.
Binary file added
BIN
+352 Bytes
...allgraph/src/test/resources/callgraph/ConcreteDispatch/binary/cvcscincomplete/Class.class
Binary file not shown.