Example #1
0
        public GetAllAggregateNamesQueryTests(DatabaseFixture databaseFixture)
        {
            var connectionStringProvider = databaseFixture.ConnectionStringProvider;

            aggregateNameDatabaseHelper = new DatabaseHelper <Guid, AggregateNameAggregateState>("AggregateName", connectionStringProvider.TemplateConnectionString, x => x.Id);

            this.sut = new GetAllAggregateNamesQuery(connectionStringProvider);
        }
 public GetAllAggregateNamesQueryTests(DockerFixture fixture)
 {
     this.sut = new GetAllAggregateNamesQuery(fixture.ConnectionStringProvider);
 }