public AuthorServiceTests(BaseTestFixture fixture) : base(fixture)
 {
     this.authorService = fixture.Provider.GetService(typeof(IAuthorService)) as IAuthorService;
     this.SeedData();
 }
Exemple #2
0
 public BookServiceTests(BaseTestFixture fixture) : base(fixture)
 {
     this.bookService = fixture.Provider.GetService(typeof(IBookService)) as IBookService;
     this.SeedData();
 }