public Acceptance(PostgresFixture fixture)
			: base(new PostgresEventStore(PostgresFixture.ConnectionString))
		{
			_fixture = fixture;
			var snapshotted = new CreateGuidAggregateTablesCommand(PostgresFixture.ConnectionString);
			snapshotted.Execute(SnapshotStream.StreamName);

			var normal = new CreateGuidAggregateTablesCommand(PostgresFixture.ConnectionString);
			normal.Execute(DefaultStream.StreamName);

			fixture.DropOnDispose(SnapshotStream.StreamName);
			fixture.DropOnDispose(DefaultStream.StreamName);
		}
		public PostgresStoreReaderTests(PostgresFixture fixture)
		{
			_store = new PostgresEventStore(PostgresFixture.ConnectionString);

			fixture.DropOnDispose(StreamName);
		}