Test Manager - strange output

ainsd

Member
In the test manager window I have a series of tests along the lines of ...

Input / Output values
-------------------------------------------
Variable name Input value Output value
p_template_id...1
p_valid.......................Y
-------------------------------------------

On running the test manager script, I get run results ...

Result
Variable p_valid: required "Y", actual "Y

i.e. Missing " character.

The run should pass with these parameters, am I missing something or is this a bug?

Thanks,
David
 
Last edited:
Hi Marco,

I think I've solved this!
The out parameter that I was testing was defined as CHAR and the test script variable type was set to String. I changed the out parameter to be VARCHAR2 and then the test manager produced expected results.
Similarly if I change both the out parameter type and the test script variable type to CHAR then all is fine.

Cheers,
David
 
Back
Top