Questions tagged [test-automation]
The test-automation tag has no summary.
70 questions
-2 votes
2 answers
193 views
Monitor newly released code without real traffic
As new code is released to production, without enough direct access to production execution environments I rely only on user traffic for monitoring. However not all use cases get covered via user ...
1 vote
1 answer
117 views
How to handle dependencies when writing characterization tests
I am currently working on a codebase that is full of objects that are 3000+ lines long and have at least 20 dependencies each, and I'm about to try covering them with characterization tests before I ...
0 votes
2 answers
246 views
Is it a code smell to put selection strategy concerns in an enum class?
Right now, I have this enum, called MemberCategory, defined to be: public enum MemberCategory { MEMBERSHIP("Membership"), GOLD_MEMBERSHIP("Gold"), SILVER_MEMBERSHIP(&...
1 vote
2 answers
98 views
How to use release toggles with Acceptance Test Driven Development?
One of the advantages of feature / release toggles is that you can integrate and deploy code without releasing it. But how does that work with ATDD? If I write some tests that are failing, because I'm ...
20 votes
5 answers
2k views
How to test variable values which differ due to floating point inaccuracy caused by different DBMS types?
I am working on a program that needs to work on floating point values that are fetched from different database types: currently we support 12 different DBMS (for example, two of them are Sqlite3 and ...
-2 votes
3 answers
185 views
How to identify scope of end-to-end automation testing?
We are struggling in deciding scope of end-to-end tests. As per our understanding, we have automated the form exactly the way users interact with it. below are the steps user perform while submitting ...
3 votes
2 answers
1k views
Unit tests vs Automation testing
I'm a C# developer & never worked before on either unit tests or Selenium browser test automation. For a current assignment, there is an existing Visual Studio solution that has a project that ...
38 votes
11 answers
14k views
Unexpected Code Coverage Reduction
I am adding unit tests to some existing code which initially was not tested at all. I have set up my CI system to fail builds where the code coverage percentage is reduced compared to previous build -...