Ejemplo n.º 1
0
 public PostNewNoteTests(DynamoDbIntegrationTests <Startup> dbFixture)
 {
     _dbFixture    = dbFixture;
     _notesFixture = new NotesFixture(_dbFixture.DynamoDbContext);
     _steps        = new PostNoteSteps(_dbFixture.Client);
 }
 public GetNotesByTargetIdTests(DynamoDbIntegrationTests <Startup> dbFixture)
 {
     _dbFixture    = dbFixture;
     _notesFixture = new NotesFixture(_dbFixture.DynamoDbContext);
     _steps        = new GetNotesSteps(_dbFixture.Client);
 }
Ejemplo n.º 3
0
 public HealthCheckTests(DynamoDbIntegrationTests <Startup> dbFixture)
 {
     _dbFixture = dbFixture;
     _steps     = new HealthCheckSteps(_dbFixture.Client);
 }
Ejemplo n.º 4
0
 public NotesDbGatewayTests(DynamoDbIntegrationTests <Startup> dbTestFixture)
 {
     _logger         = new Mock <ILogger <NotesDbGateway> >();
     _dynamoDb       = dbTestFixture.DynamoDbContext;
     _classUnderTest = new NotesDbGateway(_dynamoDb, _logger.Object);
 }