You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There seems to be a problem that I can't jump to method declaration from the spec to its associated fixture classes, if the argument was made of math, or boolean operator.
For example in the fixture classes, I have a method signature as below:
fooBar (String var1)
When I used this method from the spec, I use this:
fooBar(#someVar + #anotherVar)
The plug in fails to associate this method with its fixture classes.
Another example is:
fooBar (String var1, String var2)
I used this method from the spec as:
fooBar (#someVar, getArrayList()[0])
Where getArrayList() is defined in the fixture classes and return type as ArrayList.
Is it possible to fix this in the next release version?