Testing Documentation – Effective Ways to Present Testing Results

documentationtesting

I'm doing a school project which requires us to create a computer application and then write documentation; therefore I have to write testing documentation, I already have a of test plan (Validate all input and test all features) but how do I present the testing results in my project (e.g. table etc.)?

Best Answer

I would consider reporting various test coverage metrics. This will show that your tests are correctly exercising the full functionality of your application. Although, coverage metrics are like any statistics - they need to be clearly explained as they can be reported in mis-leading ways.

See types of coverage metrics on Wikipedia.

You can gather coverage metrics for applications that are tested both my manual and automated testing techniques.

Related Topic