|
|
|
|
|
by wildwood
4810 days ago
|
|
1) Test your APIs. A public API, especially one that is key to your business, should be near 100% coverage. And attacked to look for security/usability/load problems. 2) Test enough during development to support later regression tests, and to make sure that the design is testable. This can usually be achieved with less than 20% coverage. But if you write production code that's so screwy it can't be regression tested, then you've got big problems. 3) Test any parts that scare you or confuse you or make you nervous. Use "test until you're more bored than scared" here. |
|