My shop uses Fitnesse dbfit to test oracle database tables and stored procedures. I can do procedure calls, inserts, updates, executes, queries and it was fine until now.
How do I test for certain cells in query result not being null?
If I write null and I expect null then it is fine.
I tried fail[null] but I just get NumberFormatException.
!|Query|Select -690001 as C1, null as c2 from dual|
|C1|C2|
|fail[null]|null|
I have also tried to use !=
, <>
, 'not null', 'is not null', 'not blank'...
Also, if i call a procedure and expect one of out parameters to be anything other than null value. How would I do that?