public RepeatedWithDifferentBooksCalculationTest()
 {
     _booksCalculation = new BooksCalculation();
 }
 //All the books are the same...
 public SameBooksCalculationTest()
 {
     _booksCalculation = new BooksCalculation();
 }
Beispiel #3
0
 //All the books are different...
 public DifferentBooksCalculationTest()
 {
     _booksCalculation = new BooksCalculation();
 }