1There are many techniques I use to make my test coverage better
2-In my project we track test coverage with xray
3-As a team we first focus on each acceptence criteria making
4sure all have been covered
5-Depending on time I have and also priority and business demand
6We add negative scenarios
7-When story is done if needed end to end scenarios are added
8Also lastly we do reviews with peer testers and
9at the end we review and present as a team. This helps me
10to get best test coverage
1Code coverage is different from Test coverage.
2Code coverage is about unit testing practices
3that must target all areas of the code at
4least once. It is usually done by
5developers or unit testers.
1The code coverage testing tool runs
2parallel while performing testing on the
3actual product. The code coverage tool
4monitors the executed statements of the
5source code. When the final testing is done,
6we get a complete report of the pending
7statements and also get the coverage percentage.
1There are many techniques I use to
2make my test coverage better
3-In my project we track test
4coverage with xray
5-As a team we first focus on each
6acceptence criteria making
7sure all have been covered
8-Depending on time I have and also
9priority and business demand
10We add negative scenarios
11-When story is done if needed end
12to end scenarios are added
13Also lastly we do reviews with
14peer testers and
15at the end we review and present
16as a team. This helps me
17to get best test coverage