Пример #1
0
 public GetPagedListTest(SqlLiteWith20ProductsTestFixture fixture)
 {
     _testFixture = fixture;
 }
Пример #2
0
 public DeleteRepositoryTests(SqlLiteWith20ProductsTestFixture fixture)
 {
     _fixture = fixture;
 }
 public RepositoryAsyncTests(SqlLiteWith20ProductsTestFixture fixture)
 {
     _fixture = fixture;
 }
Пример #4
0
 public UpdateTests(SqlLiteWith20ProductsTestFixture fixture)
 {
     _fixture = fixture;
 }
Пример #5
0
 public InsertAsyncTests(SqlLiteWith20ProductsTestFixture fixture)
 {
     _fixture = fixture;
 }
Пример #6
0
 public RepositoryReadOnlyTests(SqlLiteWith20ProductsTestFixture fixture)
 {
     _fixture = fixture;
 }
Пример #7
0
 public UnitOfWorkTests(SqlLiteWith20ProductsTestFixture fixture)
 {
     _testFixture = fixture;
 }
Пример #8
0
 public GetPagedListTest(SqlLiteWith20ProductsTestFixture fixture)
 {
     _testFixture = fixture;
     _unitOfWork  = new UnitOfWork <TestDbContext>(fixture.Context);
     _repository  = _unitOfWork.GetRepository <TestProduct>();
 }
Пример #9
0
 public UpdateAsyncTests(SqlLiteWith20ProductsTestFixture fixture)
 {
     _fixture    = fixture;
     _unitOfWork = new UnitOfWork <TestDbContext>(fixture.Context);
 }
Пример #10
0
 public DeleteTests(SqlLiteWith20ProductsTestFixture fixture)
 {
     _fixture    = fixture;
     _unitOfWork = new UnitOfWork <TestDbContext>(_fixture.Context);
     _repository = _unitOfWork.GetRepository <TestProduct>();
 }