Impactful process improvement within the quality team

Hello Folks- Hope doing well. I am just curious to know if you have made any new process (QA processes) improvements and that had a big impact on improving the quality of the software. i.e: weekly bug scrubbing we implemented and it helped in clearing the backlog.

Look forward to hear back!

Regards,
Puneet A

4 Likes

Thatā€™s an interesting question! Iā€™m also looking for more inputs.

  • One of the things we implemented to shift the testing earlier while collaborating with developers
    The developer starts working in a separate branch the testing need to be done in parallel and raising bugs in that branch (visible only to that dev-tester) then give the ok to dev team to merge it to master when they are more assured. But be sure to stay updated with master !

  • testers can start designing their test cases practicing BDD earlier before developers start that better understanding can lead to better testing and thinking about more cases before even receiving the final version thatā€™s going to be released

4 Likes

My nr 1 is still Mutation testing, when devs like to write unit tests (or have to) but donā€™t really know what to test forā€¦ I introduce mutation testing so they can get up to 100% mutation coverage & 80% code coverage.

3 Likes

Yes, I agree to this point that creating test cases at the earlier stage leads to better testing and finding more edge cases for testing.
Also tester gets a more clear picture of how that feature will work with the entire product.
We have implemented this technique into our one product and we have seen some remarkable results for that.

3 Likes

Implementing session-based test management helped us focus on risks and increased the time spent interacting with the application and anything beyond software and hardware that is also part of the product. This maximises chances of finding problems that matter.
It also helped with continuous improvement of the testing process.

3 Likes

How easy is mutation testing really, when you donā€™t have a code coverage tool to validate against as a way to know you are close to the goalposts? Is it worth prioritizing a code-coverage tooling Epic (even if my PO will probably not agree to doing the work).

Iā€™ve never pushed mutation testing, but Iā€™m sure a few of our devs do use it to experiment, but once again not having code coverage tool, it means less feeling of value I guess. Myself Iā€™m at the end-2-end level, and it feels evil to only be doing the UI level testing in the testing pyramid.

1 Like

Mutation testing can be used aside from code coverage. You donā€™t need a fancy code coverage tool to use mutation testing. Mutation testing is just there to test your unit tests and it points out which are bad and which are missing. The mutation coverage doesnā€™t say anything about your code coverage either, itā€™s coverage means that you have written good unit tests not that you are covering all parts of the code itself.

Itā€™s super easy to implement. imho Mutation testing > Code coverage because you can write unit tests which test absolutely nothing. I donā€™t really ask for their code coverage anymore now that I think of it, I just ask if they have 90%+ mutation coverage because then I at least know they have written decent unit tests :stuck_out_tongue:

2 Likes

Okay, Iā€™m going to gripe a bit about early testing. I hope my Marketing team donā€™t read this forum.

We have been asked to do some re-skinning, and were given ā€œwireframesā€ for all the screens that need changing, but the wireframes are in Adobe Cloud, and the person making them has to of course password protect these. As they update the wireframes with final versions to include the correct re-skinning colours, they have to remember to publish the new file in the Adobe cloud as a new file.
Basically marketing donā€™t get ā€œagileā€, because they have not been sharing the graphic designs with any of the testers. In part this has been caused by marketing not being the same person along the chain, and actually being multiple providers, which ads risk.

How do Marketing expect to check that their designs got delivered? Itā€™s the QAā€™s job to check, but QA need to be in the loop every time the designs change. Perhaps some parts of your organisation are not ready for this left-shift. I think left-shift also entails a kind of communication and a kind of transparency of process that not everyone is good at implementing, much less explaining. Itā€™s hard.

1 Like

That is brilliant. The cost of maintaining a code-cover tool it a pain, but itā€™s more valuable the bigger you are. I just never thought about mutation as a way of creating ā€œproduction-gradeā€ tests that give you the same confidence a code-cover tool often does. I really hope I can come back to this topic if it comes up in my team later.

2 Likes

The organization where I am working is a full-fledged QA company and if it is one thing that has helped us yield the best output is adding the testing factor throughout the software development lifecycle.

It means from the moment a project is initiated; we make sure that everything right from the requirements to the development process must be thoroughly tested at the developer level to avoid any errors affecting the end outcomes.

Besides, it has even helped our testers to create a smoother end experience without putting any extra effort into complex test suites.

3 Likes

Looks interesting @kanikavatsyayan and itā€™s like you are building quality IN :bulb:
Can you share more ! What are your quality objectives and how is the commitment of.the whole team toward those objectives?
How everyone contribute to quality?

2 Likes

Hi,

I have very good personal experiences in shift-left testing with ā€˜early Model Based Testingā€™ (eMBT) at different clients. eMBT is a software testing approach that ensures to optimize and speed up the Test Case Design phase. And perhaps more important, eMBT stimulates communication between all stakeholders (business and technical stakeholders) with the aim of getting a shared understanding of the requirements in an early stage of the SDLC. After all, still 35% of all bugs in production can be traced back to the requirements.

1 Like