albertogoffi / toradocu

Toradocu - automated generation of test oracles from Javadoc documentation
Other
42 stars 21 forks source link

Simplify conditions #227

Open mernst opened 6 years ago

mernst commented 6 years ago

I find output such as ((node==null) == false) wordy and hard to read. I suggest that it should be output as node!=null. More generally, conditions should never include == false or == true.