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 @@ -1024,7 +1024,7 @@ class SecuribenchTestSuite extends FunSuite {
assert(svfa.reportConflictsSVG().size == expectedConflicts)
}

ignore(
test(
"in the class Factories3 we should detect 1 conflict of a simple factory test case"
) {
val testName = "Factories3"
Expand All @@ -1033,9 +1033,18 @@ class SecuribenchTestSuite extends FunSuite {
val svfa =
new SecuribenchTest(s"securibench.micro.factories.$testName", "doGet")
svfa.buildSparseValueFlowGraph()
// println(svfa.svgToDotModel())
assert(svfa.reportConflictsSVG().size == expectedConflicts)
}

/**
* WHY IS IT FAILING
*
* It is a context issue. The current logic is not mapping
* the context when the parameters are passed to the constructor
* i.e: StringWrapper w1 = new StringWrapper(s1);
*/

/** INTER TESTs
*/

Expand Down
Loading