Suppose a API request fetches a users id, email address and birthday. Sample API Request below: For the above request, the following is the response: Now, what will be the test in postman to make sure that all the returned values under birthday node is greater than 1988-18-01? I have tried the following: But postman says: “Check birthday greater than
Tag: functional-testing
Custom linear congruential generator in JavaScript
I am trying to create a custom linear congruential generator (LCQ) in JavaScript (the one used in glibc). Its properties as it’s stated on Wikipedia are: m=2^31 , a=1103515245 , c=12345. Now I am getting next seed value with Although the generator seems to work, but when the numbers are tested on canvas: They seem to be horribly biased: http://jsfiddle.net/7VmR9/3/show/