GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Testing  >  Testing General

 Print  |  
Question:  How do you know when your code has met specifications?



May 05, 2007 10:03:56 #3
 pavankumar101   Member Since: February 2007    Total Comments: 5 

RE: How do you know when your code has met specificati...
 

There are two types of testing strategies using to find out code has met specifications or not.

1.Static testing , the software is tested with out executing. It is done through Manual code reviews and code inspections. In the process the code is checked to ensure that it implements all the requirments given in the SRS document and also checked is it easy to  understandable  and maintainable. This is also called static analysis.

2.Dynamic testing , the code is executes and the actual results are compared with the expected results.

     

 

Back To Question