I have this behaviour I do not really understand
${someVar}
${someVar.class.name}
${someVar == 'error'}
outputs
false
java.lang.Boolean
true
- How can it be exlpained?
- What it the correct way to write the test in order to first test if the two 'things' have the same type and then if their value is the same?