About 137,000 results
Open links in new tab
  1. How should I test my TEST code? - Software Engineering Stack …

    I understand how to test my normal code, but how should I test my test code to make sure it can effectively find and report errors when they are present? I personally have been stupid enough …

  2. Is there such a thing as having too many unit tests?

    May 4, 2017 · 80 If you have worked on large code bases created using Test Driven Development, you would already know there can be such a thing as too many unit tests.

  3. Is it normal to spend as much, if not more, time writing tests than ...

    Oct 14, 2015 · Anecdotal, but I find I spend roughly as much time writing tests as writing code when I TDD. It's when I slip up and write tests after the fact that I spend more time on the tests …

  4. Managing code: Unit tests with source or separate?

    Jul 24, 2015 · The standard practice in the Objective C world has been to follow that laid down in the Java world when it comes to code management. i.e. Your application source code goes in …

  5. testing - How to effectively unit test code with lots of database ...

    Jun 29, 2021 · How to effectively unit test code with lots of database dependencies? Ask Question Asked 4 years, 6 months ago Modified 4 years, 6 months ago

  6. What should come first: testing or code review?

    Mar 22, 2012 · If you practice code review before doing a check-in then code review falls between two testing stages: you as a developer test your code first, your peer does code review, you …

  7. Why to let / not let developers test their own work

    107 As others (and yourself) have noted, developers should unit test their own code. However, after that, any nontrivial product should also be tested by independent person (s) (QA …

  8. testing - How exactly should unit tests be written without mocking ...

    Nov 27, 2018 · 84 the point of unit tests is to test units of code in isolation. Martin Fowler on Unit Test Unit testing is often talked about in software development, and is a term that I've been …

  9. unit testing - Unexpected Code Coverage Reduction - Software ...

    Nov 8, 2019 · The code coverage percentage is a good measure of this only if your code always grows, which is unfortunate. Another way to put it: whenever you manage to reduce the …

  10. How do you quickly test C++ code? - Software Engineering Stack …

    After searching around on the internet, this complaint seems laughable, people talk about building their code for an hour. But a lot of my coding process is trial and error, which is agonisingly …