What are the input documents that you consider during the construction of the test cases?
How to write test cases for drop downs,check box?
1. Select > tick appears
2. Deselect > tick disappears
3. Able to select and deselect
4. Can do more than one selection
What do we do when we cannot execute the test cases ?
What are the test cases for negative testing for a web application?Take any scenario as an example and give 10 negative test cases.
Testcase writing for radio button and check box
How to write testcases for radio button and check box please can you explain with some example.......
see whether with out selecting the check box we can submit or not i.e., to test whether it is a mandatory field or not.
I am not posting a answer at all this is a Question if the Check Box is used just for a kind of selection and not bothering the Flow then what we have to write as a test case
Answered by: vijay
Answered On : Apr 12th, 2007Test cases for Pen are,
1. Dimension of the pen,
2. Color of the pen,
3. GUI testing: logo of the pen maker,
4. Load testing
4.1 Total length that pen can write,
4.2 Strength of the nib,
5. Usability testing: grip of the pen.
6. Against the surface it can write.
7. Hanger provided in the cap,
8. Integration testing: body of the pen should perfectly fit with the cap of the pen,
9. Ink in the pen, at what temp does the ink get blocked.
10. Size of the nib like 0.5mm/0.6mm
11. Load test: when pen is pressed hard against the hard surface then refill should not come out of the pen from the backside.
Likewise can write more test cases.
1. Verify color of the Pen: Pen cap color should matches with the ink color 2. Verify company label displaying on the Pen. label should be as per manufacturers provided text. 3. Verify user ability to...
Test Case for Pen1.Check whether the pen is writing in which colour2.Check whether we can see the liquid from outside3.Check whether the pen is ballpoint or ink4.Check whether the pen is compact at th...
It should be in keep writing in all condition
User inter face : 1. Check look of the pen 2. Check Pen colour As per specification 3. Check whether cap is presented 4. Check whether pen is ball or ink as per specification 5. Check pen size a...
Testing the application according to functionality is positive testing and testing the application with negative values like enter the incorrect values is negative testing
Positive test case is nothing but writing the test case to accept only correct value Negative test case is nothing but trying to break the system deliberately Name field is there with specifications...
There is a concept called Orthogonal Array. If you have different modules and if it can be split up into factors and levels, this technique will give you the best possible combination to achieve the o...
Random is never effective. In the given time, among the 200 test cases, the test cases with main functionality should be checked first.
Write test case for receiving & sending phone calls.
"Test Case Id: Unique Name or ID." "Features To Be Tested: Corresponding Module/ Function/ Service" "Test Suite Id: In which batch, is this case is a member of" "Priority: Importance of the test case...
What are the test cases for mouse(this question is asked in one of my interview)
Test cases for mouse:- 1. To Check the Mouse company 2. Check whether it is PS/2, USB or Serial port mouse or Cardless Mouse 3. it should be plugged to all the ports of different manufactures 4. Ch...
Test Cases for Mouse:1.Check whether the mouse is attached to the cpu2.Check whether the mouse has 2 or 3 buttons3.Verify whethet the mouse is not accepted if it has only one button4.Check whether the...
We can also say this as Addendum (Additional Requirement). As the application is still in the Development phase. we can write Test case for the same in their appropriate module. But Ensure the newly a...
First I get the details through walk through after got the three lines of requirement and involve with BA and devolopers for full details.
Junit testcase code for simple login page in eclipse.
How to write testcases for RSS feed label?
Function that counts number of primes
Write a function that counts the number of primes in the range [1-n]. Write the test cases for this function.
static int getNumberOfPrime(int N) {
int count = 0;
for (int i=2; i<=N; i++) {
int max = (int)Math.sqrt(i);
boolean prime = true;
for (int j=2; j<=max; j++) {
if (i%j == 0 && i != j) {
prime = false;
break;
}
}
if (prime) {
count++;
System.out.print(i + ",");
}
}
return count;
}
Test case for prime numbers can be :
let the prime no be n
case1: expected o/p (prime no)result
divide the no n by 1 remainder=0 pass
divide the no n by n remainder=0 pass
divide the no n by 2 remainder!=0 pass
.
.
divide the no n by upto n-1 and if remanider not equal zero
then it is a prime no.
Write a test case for fibonacci series?
Test case for fibonacci series can be 1.When an zero is entered it should return a zero. 2.When a negative integer is entered it should not accept the value and should return an error msg. 3.When a p...
How to write test cases for integration testing?
It depends on how you do integration testing either by incremental or non-incremental testing as per that the integration test cases are written. But still for incremental testing we write the test c...
How to write the testcase for old password check ?
That the new password provided is not same as previous 3 password. How to write the testcase
First test for basic validations - Test for Blank password - Test for Strong password Test for validations against last 3 - Input recently used password - Input II recently used password - Input III ...
What is meant by configuration management?
Configuration management has the following features storing information about versions and builds of the software and testware; • traceability between software and testware and different versions o...
CONFIGURATION MANAGEMENT PLAN DOCIt is also called as change management doc.it contains the change request requested by the end user while the s/w is in designing phase.it is also called as CI =change...
Write the test cases on coffee machine?
Test Cases for Coffee machine 1. Check wether all the buttons on Coffee Vending M/C working properly or not. 2. Check on pressing the button m/c prepares the coffee & serves it for you. 3. Check Coffe...
Smoke testing:
First check coffee machine testable or not
check whether button are working properly or not
then check there are water, milk, coffee option are there.
Editorial / Best Answer
Answered by: kurtz182
View all questions by kurtz182 View all answers by kurtz182
Member Since Nov-2009 | Answered On : Dec 10th, 2009
Q: What are the input documents that you consider during the construction of test cases?
1) Business Requirements Document or
Functional Requirements Document
2) Technical Specifications Document
3) Application Work-Flow Diagrams
4) Application Wireframes
5) Application Mockups
6) System Architectural Diagrams
7) Compatibility Matrix
8) Test Plan
answer by kurrtz182 is perfect.i jst want to add one test case in it.
after falling from particular height pen should not break.
There are two methods:-
1. Use case point
2. Functional point.
Based on the PRS and SRS we can generate the Use cases and write the scenarios