Skip to main content

Questions tagged [test-automation]

-2 votes
2 answers
194 views

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 ...
sam kirubaharan's user avatar
4 votes
2 answers
221 views

I am developing a website somewhat like leetcode, however, it will be for website testing using Selenium WebDriver.My service will provide different websites, along with various tasks that describe ...
Yahya Abdul Majeed's user avatar
1 vote
1 answer
117 views

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 ...
Nicolas Straub's user avatar
2 votes
1 answer
388 views

I've been working on a personal project for some time, and I believe that I'm at that point where, if I don't embrace unit tests (and ideally TDD) now, it may be too late, so I want to make the right ...
Pablo's user avatar
  • 29
0 votes
2 answers
246 views

Right now, I have this enum, called MemberCategory, defined to be: public enum MemberCategory { MEMBERSHIP("Membership"), GOLD_MEMBERSHIP("Gold"), SILVER_MEMBERSHIP(&...
Mike Warren's user avatar
0 votes
2 answers
331 views

I have a big function that does several things, including some database operations, and calling another smaller function. Something like: BigFunction() { DB.SomeTable.AddRow(newRow); ...
MGOwen's user avatar
  • 734
1 vote
2 answers
98 views

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 ...
snowfrogdev's user avatar
3 votes
1 answer
206 views

I'm responsible for staging some tests, against some members, namely against the rates that are due for them. After talking about it with my peers, I see the members are a function of three other ...
Mike Warren's user avatar
20 votes
5 answers
2k views

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 ...
Gofrette's user avatar
  • 333
2 votes
1 answer
515 views

I believe extensive automated unit tests should be part of the build. However the testing pyramid suggests that there should be a much smaller number of system tests. Should an automatic build include ...
Gonen I's user avatar
  • 155
-2 votes
3 answers
186 views

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 ...
ssharma's user avatar
  • 169
1 vote
1 answer
1k views

General overview We recently had lots of problems with automated tests in our team. Part of it was that the people designated to writing them had little experience. After this failed, we incorporated ...
cah1r's user avatar
  • 322
3 votes
2 answers
1k views

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 ...
sukesh's user avatar
  • 165
2 votes
8 answers
587 views

When defining software requirements, should automated testing (unit and integration) be specified? I have not seen any guidance on this, and "testing" is not a functional requirement for the software. ...
SoCal's user avatar
  • 159
38 votes
11 answers
14k views

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 -...
Jonathan Gross's user avatar

15 30 50 per page
1
2 3 4 5