DEV Community

Discussion on: What are your biggest problems with unit testing?

Collapse
 
miniscruff profile image
miniscruff
  1. Unit tests should provide a base line to prevent regressions when refactoring. If your tests are causing issues than your are refactoring wrong. See the book on refactoring by Martin Fowler.
  2. Your UI framework should provide these methods. This is usually referred to as integration testing tho
  3. Many methods of testing these like subclasses or testing through the public ones.