Geeks Talk

Prepare for your Next Interview




Guidelines for Manual Testing

This is a discussion on Guidelines for Manual Testing within the Testing Issues forums, part of the Software Testing category; Hi friends, the below article will give an overview of software testing, the different types of testing that can be done and the activities involved in manual software testing. 1....


Go Back   Geeks Talk > Software Testing > Testing Issues

Register FAQ Members List Calendar Mark Forums Read

Reply

 

Thread Tools Display Modes
  #1 (permalink)  
Old 11-15-2007
Moderator
 
Join Date: Sep 2007
Location: Chennai, INDIA
Posts: 406
Thanks: 2
Thanked 148 Times in 81 Posts
sridharrganesan will become famous soon enoughsridharrganesan will become famous soon enough
Guidelines for Manual Testing

Hi friends, the below article will give an overview of software testing, the different types of testing that can be done and the activities involved in manual software testing.

1.1 what is software testing?

ieee definition states “testing is the process of exercising or evaluating a system or system component by manual or automated means to verify that it satisfies specified requirements” as such, there are many published definitions of software testing, however all of these definitions boils down to essentially the same thing:

software testing is the process of executing software in a controlled manner, in order to answer the question “does the software behave as specified?” on a whole, testing objectives could be summarized as:

• testing is a process of executing a program with the intent of finding an error.
• a good test is one that has a high probability of finding an as yet undiscovered error.
• a successful test is one that uncovers an as yet undiscovered error.

1.2 why test?

• developers not fallible
• bugs in compilers, languages, dbs, os
• certain bugs easier to find in testing
• don’t want customers to find bugs
• post release debugging is expensive
• good test design is challenging and rewarding

1.3 principles of testing

• all tests should be traceable to requirements
• tests should be planned ahead of execution
• pareto principle – isolate suspect components for vigorous testing (80% of defects can be traced back to 20% of requirements)
• testing should be done in an outward manner (unit ->system)

1.4 can testing be replaced?

though there are other approaches possible to create good software like inspection, reviews, design style, static analysis, language checks etc software testing cannot be done away with. Review, inspect, read, walkthrough and test mandatorily

1.5 test strategy definition

a test strategy is a statement of the overall approach to testing, identifying what levels of testing are to be applied, and the methods, techniques and tools.

1.6 test plan

the next task would be the preparation of a test plan a test plan states what the items to be tested are, at what level they will be tested, what sequence they are to be tested in, how the test strategy will be applied testing of each item, and describes the test environment. Different test plans are prepared based on the level of testing.

The objective of each test plan is to provide a plan for verification, by testing the software, that the software produced fulfills the requirements or design statements of the appropriate software specification.

unit test plan: a unit test plan describes the plans for testing individual units / components / modules of the software

integration test plan: an integration test plan describes the plan for testing integrated software components.

system test plan: a system test plan describes the plan for testing the system as a whole.

acceptance test plan: an acceptance test plan describes the plan for acceptance testing of the software. Normally “acceptance test plan” is prepared by the customer

1.7 test design

once the test plan for a level of testing has been written, the next stage is to specify a set of test cases or test paths for each item to be tested at that level. A number of test cases will be identified for each item to be tested at each level of testing.

Each test case will specify how the implementation of a particular requirement or design is to be tested and the criteria for success of each test.

• a unit test specification will detail the test cases for testing individual units of the software

• a integration test specification will detail the test cases for each stage of integration of tested software components

• a system test specification will detail the test cases of system testing of the software

• an acceptance test specification will detail the test cases of acceptance testing of the software it is important to design test cases for both positive and negative testing. Positive testing checks whether the software is doing what it is supposed to do and negative testing checks whether the software is doing what it is not supposed to do.

1.8 test execution and reporting

the next stage is performing the necessary testing. The output of test execution is recorded in a test results file normally called as the test log. These actual results are then compared with the expected result of the test specification to determine if the test case has been successful or not. Accordingly a “pass / fail” is marked against the respective test case. If the test case has been a failure, then a re-run of the test case is done and results noted.

find attached the file for the flowchart depicting the testing process

1.9 when do you stop testing?

before we ask this question, let us try to answer another question

“is complete testing possible?”

obviously the answer is no. To prove that a program is completely free of bugs is practically impossible and theoretically a mammoth exercise.

Therefore the aim of testing is to provide a suitable, convincing demonstration that the program has been tested enough some of the stop criterias are:

• time runs out (poor criteria !!)
• resources run out
• testing stops when all test cases execute without producing any error
• testing stops when certain number of errors are found
• testing stops when all statements and all branches are executed and all test cases execute without failure
• testing stops when the result is unproductive (no. Of errors per person per day reduces)

2.0 useful tips

• manage testing seriously as development projects are managed
• foster a quality culture that wants to find and prevent problems
• set clear directions and expectations
• delegate responsibility and accountability to good people
• invest in team tooling and support infrastructure

2.1 common pitfalls

some of the aspects that hinder testing itself could be

• optimism
• belief that the system works
• negative attitude towards effective testing
• ego
• don’t want to fail
• conflict between testers and developers
• testing is least structured
• testing is expensive
• delivery commitments

some of the pitfalls of manual testing could be

• testing speed cannot match development speed
• each build not fully tested
• test coverage decreases, more bugs left undetected
Attached Files
File Type: doc Testing Process_Flow chart.doc (47.5 KB, 524 views)

Last edited by sridharrganesan : 11-15-2007 at 12:31 AM.
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 12-06-2007
Junior Member
 
Join Date: Dec 2007
Posts: 12
Thanks: 4
Thanked 3 Times in 3 Posts
jaya_jizzy11 is on a distinguished road
Re: Guidelines for Manual Testing

awesome !!!!!!!!!
Reply With Quote
  #3 (permalink)  
Old 01-18-2008
Junior Member
 
Join Date: Jan 2008
Location: Bangalore
Posts: 6
Thanks: 4
Thanked 2 Times in 2 Posts
Manjukeragodu is on a distinguished road
Re: Guidelines for Manual Testing

How to estimate the time limit for testing
Reply With Quote
The Following User Says Thank You to Manjukeragodu For This Useful Post:
  #4 (permalink)  
Old 01-18-2008
Moderator
 
Join Date: Sep 2007
Location: Chennai, INDIA
Posts: 406
Thanks: 2
Thanked 148 Times in 81 Posts
sridharrganesan will become famous soon enoughsridharrganesan will become famous soon enough
Re: Guidelines for Manual Testing

Quote:
Originally Posted by Manjukeragodu View Post
How to estimate the time limit for testing
Hi Manju,

Plese find the attched document which will help you in estimating through test case point analysis.

Regards,
Ganesan
Attached Files
File Type: doc TCP.doc (106.0 KB, 181 views)
Reply With Quote
The Following 2 Users Say Thank You to sridharrganesan For This Useful Post:
  #5 (permalink)  
Old 02-07-2008
Contributing Member
 
Join Date: Sep 2007
Location: MD
Posts: 58
Thanks: 9
Thanked 4 Times in 4 Posts
newhere is on a distinguished road
Re: Guidelines for Manual Testing

You are simply great man. Thanks a lot
Reply With Quote
  #6 (permalink)  
Old 02-14-2008
Junior Member
 
Join Date: Dec 2007
Posts: 5
Thanks: 3
Thanked 0 Times in 0 Posts
TRINATH_300 is on a distinguished road
Re: Guidelines for Manual Testing

thanks for the info

Last edited by sridharrganesan : 02-15-2008 at 12:07 AM.
Reply With Quote
  #7 (permalink)  
Old 02-19-2008
Contributing Member
 
Join Date: Feb 2008
Location: India
Posts: 42
Thanks: 3
Thanked 5 Times in 5 Posts
krishna1tester is on a distinguished road
Re: Guidelines for Manual Testing

Hi sridhar ganeshan,
the testing process flow chart is really good...
Thanks,
krishna

Last edited by krishna1tester : 02-19-2008 at 01:31 AM.
Reply With Quote
  #8 (permalink)  
Old 02-27-2008
Junior Member
 
Join Date: Feb 2008
Posts: 29
Thanks: 3
Thanked 7 Times in 6 Posts
trainee_tester is on a distinguished road
Re: Guidelines for Manual Testing

The materials for manual testin was very much clear but i have few questions regarding types of testing techniques

1)as i can see unit testing is done to test components,

a)is unit testing black box or white box?

b)does in unit testing the whole application/program is divided into small similar functionality division and testing is performed for that division

c)does unit testing can be done with many testing technique(like system testing can be load or performance or regression) i.e is there any sub division in unit testing

thanks & regards
trainee_tester
Reply With Quote
  #9 (permalink)  
Old 02-27-2008
Moderator
 
Join Date: Sep 2007
Location: Chennai, INDIA
Posts: 406
Thanks: 2
Thanked 148 Times in 81 Posts
sridharrganesan will become famous soon enoughsridharrganesan will become famous soon enough
Re: Guidelines for Manual Testing

Quote:
Originally Posted by trainee_tester View Post
The materials for manual testin was very much clear but i have few questions regarding types of testing techniques

1)as i can see unit testing is done to test components,

a)is unit testing black box or white box?

b)does in unit testing the whole application/program is divided into small similar functionality division and testing is performed for that division

c)does unit testing can be done with many testing technique(like system testing can be load or performance or regression) i.e is there any sub division in unit testing

thanks & regards
trainee_tester
Hi,

Unit Testing is the White Box Testing Technique.

Unit testing is done against the code and it is done prior to it goes out for System or Performance testing. While doing unit testing the developers will validate the code using the following ways:
1. statement coverage: Here it will be tested that all the statements in the code is necessary and if there are any unwanted line of code it is removed, and code efficiency is increased by this way
2. Decision coverage or branch coverage - here it is tested that all the branch decisions are executed atleast once.
3. Condition coverage- here the condition loop is tested for both the true and false conditions are executed as per the requirement.

When Bugs are marked for the applicaiton while doing system or performance testing, and the bugs are fixed by the developer and once again the unit testing is carried out before deployed for functional or performance testing.

Regards,
Ganesan
Reply With Quote
  #10 (permalink)  
Old 03-11-2008
Junior Member
 
Join Date: Apr 2006
Location: Bangalore, Karnataka, India
Posts: 6
Thanks: 2
Thanked 3 Times in 2 Posts
vaibhavst is on a distinguished road
Re: Guidelines for Manual Testing

best answer
Reply With Quote
  #11 (permalink)  
Old 04-08-2008
Moderator
 
Join Date: Sep 2006
Location: Delhi (India)
Posts: 864
Thanks: 12
Thanked 81 Times in 65 Posts
jainbrijesh is on a distinguished road
Re: Guidelines for Manual Testing

Upload some document related to checklist also.
__________________
Brijesh Jain
brijesh.tester@yahoo.co.in
http://softwaretestingexpertise.blogspot.com
Reply With Quote
  #12 (permalink)  
Old 05-13-2008
Junior Member
 
Join Date: May 2008
Location: banglore
Posts: 2
Thanks: 1
Thanked 0 Times in 0 Posts
Rajasekharreddy.Y is on a distinguished road
Re: Guidelines for Manual Testing

Thanks for giving valuable documentation about Testing......But My question is how the ERP technologies will test.....like SAP,Oracle Apps......

Regards,
Rajasekharreddy.Y
Reply With Quote
  #13 (permalink)  
Old 05-19-2008
Junior Member
 
Join Date: Nov 2007
Location: us
Posts: 2
Thanks: 1
Thanked 0 Times in 0 Posts
sanskriti is on a distinguished road
Re: Guidelines for Manual Testing

Hi Ganesan,
Thanks for the info...your effort is appreciated.
Cheers,
Sanskriti.
Reply With Quote
  #14 (permalink)  
Old 05-30-2008
Junior Member
 
Join Date: May 2008
Location: india
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
sri_maheshy is on a distinguished road
Re: Guidelines for Manual Testing

Thanx and its a great answer
Reply With Quote
  #15 (permalink)  
Old 06-16-2008
Junior Member
 
Join Date: Jun 2008
Location: djkui
Posts: 5
Thanks: 2
Thanked 0 Times in 0 Posts
impradee2008 is on a distinguished road
Re: Guidelines for Manual Testing

Hi,

I want to know some thing about
a. State Transition Testing
b. Decision Table Testing.
Reply With Quote
  #16 (permalink)  
Old 07-14-2008
Junior Member
 
Join Date: Jul 2008
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
syamu is on a distinguished road
Re: Guidelines for Manual Testing

Hi All,
i am new to this forum and testing.This information very useful.
Thank you.
Reply With Quote