write down test cases for "x>=1"
Answers were Sorted based on User's Feedback
Answer / vijay
1. x = 1
2. x > 1
3. x < 1 (Negative testing like negative value -1 -2 etc )
4. x = 0 (Negative testing)
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / sundar g
While doing the testcases we should look out for all the
possible errors that may comeout of the inputs that we
give. So we should try our hand with not only integer
values but also with the special characters.
The test cases are,
x=1;
x=23;
x=0;
x=.67;
x=a;
x=!;
x=NULL;
x= ;
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / phu
Test Cases:
1. Invalid: x is text, not is number
2. Valid: x is number
2.1. x = 1
2.2. x = 0
2.3. x = 2
2.4. x = very large number, to check overflow number
if 2.1,2.3 are Pass, 2.2 is Fail => x >= 1
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / abb
With the above scenarios mentioned by vijay I wanna include
the following too -
x=@
x>=blank
x>=1;
| Is This Answer Correct ? | 0 Yes | 0 No |
how to test an imaging application that removes the red eye affect from an image?
WHAT IS THE MEANING OF RISK BASED TESTING WITH EXAMPLE pls this is urgent Thanks in advance
What is transaction testing?
A wholesaler sells printer cartridges. The minimum order quantity is 5. There is a 20% discount for orders of 100 or more printer cartridges. You have been asked to prepare test cases using various values for the number of printer cartridges ordered. Which of the following groups contain three test inputs that would be generated using boundary value analysis?
What is the Difference between Testing Types and Testing Techniques
write test cases for test cases...?
explain with examples- transaction testing, syntax testing, domain testing, logic testing, and state testing.
test case for digital camera
what is self cleaning of test cases and repeatability and usability of test cases?what is the difference in repeatability and usability
How to write test case for this scenario. The system shall allow for a wild card search for the first name with a minimum of one character.
How to write test data for login module?
Explain the gray box testing?