|
|
|
|
|
by pbiggar
4624 days ago
|
|
Ignore it. Dont write any tests. Then, when things start to break, write tests that would have caught the problem. In general, you want to write the smallest test that will work. Unit tests are always better (and you dont need to stub anything or mock anything if you're lucky). Note that your problem might be your software. If you write relatively decouples and composible code, testing it should be easy (and you can go a long time without mocking anything). So if you're using fat models for example, that's very easy to test. |
|