How do you know when your code has met specifications?

Showing Answers 1 - 5 of 5 Answers

Srinivas Bhimisetty

  • Jun 15th, 2005
 

With the help of tracebility matrix. All the requirements are tracked to the test cases. When all the test cases are executed and passed is an indication that the code has met the requirements.

  Was this answer useful?  Yes

Sunny

  • May 15th, 2007
 

By testing only we can ensure that code meets requirement
Coding in the sense white box testing is done.

  Was this answer useful?  Yes

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.

  Was this answer useful?  Yes

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. this review we can't say code is cent percent correct. this is only a process or way to find out bugs in software development.

2.Dynamic testing , the code is executes and the actual results are compared with the expected results. Both results match same. then code is met specifications.

Please Correct me if i am wrong....

  Was this answer useful?  Yes

krish1362

  • Jul 21st, 2007
 

when the test results do not contradict with test requirements or the system requriements.......and.............when there are no bugs found in the application.

  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