cologneintelligence / FitGoodies

Goodies for Fit (Framework for Integration Tests)
GNU General Public License v3.0
4 stars 2 forks source link

Differentiation of boolean datatypes from other datatypes #41

Closed Kaucher90 closed 9 years ago

Kaucher90 commented 9 years ago

for boolean variables, only the string "true" will be parsed to the boolean value true. If the tester puts some other, maybe context related String like "ok" into the variable, he will NOT get an parse error. Fit just parses it to false.

There should be two determined strings/codes to map the boolen values true and false, exception otherwise.

jochenwierum commented 9 years ago

In the current Version of fitgoodies, parsing boolean values is not implemented. We should throw an error in this case (instead, the column stays null).

When it comes to comparing, fit just uses toString and compares the result. I see three tasks here: