Tagged Questions
1
vote
3answers
27 views
Is unit and component testing sufficient?
If you can test every line of [your product's] code via unit tests, wouldn't unit testing alone (theoretically) be sufficient?
Are there other "necessary" benchmarks of proper test coverage other ...
4
votes
4answers
226 views
Where to focus testing? On integration level or unit level?
Consider a modern web application that serves JSON through a REST API to a rich Javascript-based application with one or more single-page apps within it. Our own application is written using Angular ...
3
votes
1answer
94 views
Are there common techniques for testing the conformance of an implementation to a general contract?
Say you have defined some abstract interface and you specify a general contract for that interface to which all implementations must adhere. Are there common techniques that can facilitate testing the ...
3
votes
1answer
104 views
xUnit tests patterns for testing threaded applications
Are there either any xUnit (or otherwise) design patterns or anti-patterns for testing threaded code?
5
votes
1answer
212 views
What are the tiers of testing that should be done on a large scale distributed system?
Let's say you have a large distributed system in the cloud that's got dozens of developers working on it and actively adding code to. Your job is to make sure all of the quality gates are used and the ...
-3
votes
3answers
283 views
Tester Versus Test cases written by the tester [closed]
I have always believed that a great tester is one whose test cases help in discovery of a lot of bugs in the product and not one who finds a lot of bugs in a product.
In otherwords a team or a ...
2
votes
3answers
134 views
Do I Need To Create Mock Classes For Every Class?
Let's say I have a system composed of three classes: A,B,C that share certain dependencies.
To test A independently, I would need to create mock objects for B and C
To test B independently, I would ...