|
|
|
|
|
by rpedela
4412 days ago
|
|
The internal code argument is weak in my opinion. What does it matter if a stored procedure works 100% if, like you said, that code path will never be executed by the user? There will always be bugs in code so the goal in my view should be to make the application as bug-free as possible from the user's point of view not literally bug-free which is an unattainable goal. Time-consuming nature of feature tests can be an issue, but often is mitigated by automated testing on commit, merge, etc. But not always of course. I agree with combinatorial explosion however it can sometimes be mitigated by procedurally generating tests. |
|
Feature tests are fine for simple or small apps, but I wouldn't rely on them for the bulk of my testing in any significant app.