evosuite-plus-plus
evosuite-plus-plus copied to clipboard
Computation Graph - issues with test 3
Context
Some issues with graph for test 3 for target method valueChanged()
, branch on line 20.
Steps to Reproduce
Run testComputationGraphConstruction3()
in ObjectOrientedTest
EvoSuite Arguments
NA
Current Result
-
Branch on line 20 does not depend on
this.tree
, howeverthis.tree
is in the graph. -
Method
getPath()
is called on parametere
once, but the graph shows 2getPath()
calls on parametere
. -
Method
isLeaf()
is called on objectthis.model
, with argumente.getPath().getLastPathComponent()
which is of typeObject
. This argument is passed as parameternode
inisLeaf()
method. Lines 121 and 129 callsgetClass()
onnode
, however the graph shows thatgetClass
is called onthis.model
instead.
Expected result
As explained above.
Additional info
NA