As I said, anything non-critical - so you deliver with no critical bugs, but lesser bugs are âknown issuesâ and your team is (hopefully) committed to fixing them as time permits.
Especial when we talk talk about test code, automated checks (which is unclear to me if your refere to that):
How do you get sure that coded expectation are not outdated?
The way I do it is to check whenever there is a conflict. If the tests are failing but the devs and project management agree that the way the code is working is what should be happening, itâs time to update the tests.
What is when you know that the test code checks the wrong things, but you as human asses the product to be right?
That would be a case of a false-negative, possibly because the chosen proxy for the actual functioning isnât working as well as old-fashioned (yes, thatâs meant to be ironic) manual testing.
I see false-positives happen as well as false-negatives.
Absolutely. Automation isnât and canât be a replacement for actually using the software the way users will (and users are infinitely capable of doing things developers would never think to do, so the software is in turn infinitely capable of doing things users will think of as bugs).
I agree on that core functions should work.
In my understanding âall testsâ just not apply to core functions / these tests can also include checks of details which you do not mind to broken for that release.
Exactly! âAll testsâ means All tests, including the ones that cover nasty edge cases which might not be important for this particular release, and the flaky ones that someone is still trying to fix but which uncover useful information regardless, and that obscure feature that only one customer ever uses, and then only once in six months but if you break it youâll hear all about it, and⊠You get the idea.
Thatâs why I like to have tests prioritized so that the 20% of the software which gets 80% or more of the use is solid. I will admit to wishing I could get to a position where I can have tests to check for cosmetic issues and prioritize them as low priority - but getting that 20% is my first priority for automation.