blob: 3319d90a5ee8a65bc75ded08b8bf72ec177fa09c [file] [log] [blame]
/*
* Test case name : primitive-01.aql
* Description : Test primitive integer type int8 constructor function with boundary values
* Success : Yes
* Date : May 7th 2012
*
*/
write output to nc1:"rttest/constructor_primitive-01.adm";
//Boundary value tests int8().
//with MIN and MAX supported values.
let $a:=int8("-127")
let $b:=int8("127")
let $c:=int8("0")
let $d:=int8("1")
let $e:=int8("-1")
return {"$a":$a,"$b":$b,"$c":$c,"$d":$d,"$e":$e}