What is Basis Path Testing

A white box test case design technique that uses the algorithmic flow of the program to design tests.

Showing Answers 1 - 11 of 11 Answers

Ram

  • Jul 30th, 2005
 

Basis path testing is a hybrid between path testing and branch testing: 
 
Path Testing: Testing designed to execute all or selected paths 
through a computer program  
 
Branch Testing: Testing designed to execute each outcome of 
each decision point in a computer program  
 
Basis Path Testing: Testing that fulfills the requirements of 
branch testing & also tests all of the independent paths that 
could be used to construct any arbitrary path through the 
computer program 
 
A path through the software is a sequence of instructions or statements that starts at an entry, junction, or decision and ends at another, or possibly the same, junction, decision, or exit. A path may go through several junctions, processes, or decisions, one or more times. 
 
Click Here to Download the Document

  Was this answer useful?  Yes

Sam

  • Aug 1st, 2005
 

This method enables the designer to derive a logical complexity measure of a procedural design and use it as a guide for defining a basis set of execution paths. Test cases that exercise the basis set are guaranteed to execute every statement in the program at least once during testing.

  Was this answer useful?  Yes

mummasani

  • Mar 1st, 2006
 

" Testing the applicaiton (module) whether all the loops and conditions giving the proper outputs or not    and dataflow and control flow are existing correctly or not "

 This tesing is done by development team

  Was this answer useful?  Yes

sudhakar2068

  • Sep 11th, 2006
 

 Basis Path Testing: Execution of all possible blocks in a program.To verify

the execution of every statement in that program.

Step for Progam Runing:

prepare program depending on design  document.

Draw flow graph for that program.

calculate cyclomatic complexity.(No of Independent paths in that program)

Run program more than one time to cover each Independent

path execution.

 sudhakar kolla.

If you have doubts can ask me.

My Email:kollasudhakar2005@yahoo.co.in.

My Number:09819859346.

 

       

 

  Was this answer useful?  Yes

Sujatars

  • Mar 20th, 2007
 

Path Testing is a whote box testing technique which ensures that each logical path of the program are executed

  Was this answer useful?  Yes

Rahul S Kulkarni

  • Nov 1st, 2007
 

Basic path testing is how to reach to the particular destination for testing. 
This can also have path from and path to.
Path from is the Path to the screen or to the object for what the testing will be done?

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions