Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -955,7 +955,7 @@ class SecuribenchTestSuite extends FunSuite {
assert(svfa.reportConflictsSVG().size == expectedConflicts)
}

ignore(
test(
"in the class Datastructures4 we should detect 0 conflict of a simple data structure test case"
) {
val testName = "Datastructures4"
Expand All @@ -966,9 +966,22 @@ class SecuribenchTestSuite extends FunSuite {
"doGet"
)
svfa.buildSparseValueFlowGraph()
println(svfa.svgToDotModel())
assert(svfa.reportConflictsSVG().size == expectedConflicts)
}

/**
* WHY IS IT FAILING?
*
* The current implementation does not have a sound approach
* to handle context. It can not manage context for nested cases.
*
* i.e: String str = c1.next.str
*
* To fix that problem, the logic that creates the Open/Close labels
* must be enriched.
*/

ignore(
"in the class Datastructures5 we should detect 1 conflict of a simple data structure test case"
) {
Expand Down
Loading