Tagged Questions
2
votes
2answers
120 views
Is it a good practice to unit test the Liskov Substitution principle's compliance?
Assume a class named Sprinter:
public class Sprinter {
protected int travelMeters;
public void run(int seconds) {
this.travelMeters = 9 * seconds;
}
public int ...
6
votes
4answers
297 views
Can I implement a series of reusable tests to test an interface's implementation?
I am writing a series of collection classes in C#, each of which implement similar custom interfaces. Is it possible to write a single collection of unit tests for an interface, and automatically run ...
0
votes
0answers
65 views
Unit testing Microsofts LSP api
Has anyone every written unit tests for Microsoft's LSP?
If so, I would like to see some examples.
