public void PurgeSnapshotsAsync_EmptySnapshotStoreDoesNotThrow()
 {
     // Act + Assert
     Assert.DoesNotThrow(() => SnapshotPersistence.PurgeSnapshotsAsync(CancellationToken.None).Wait());
 }
 public void PurgeSnapshotsAsync_NoneExistingSnapshotDoesNotThrow()
 {
     // Act + Assert
     Assert.DoesNotThrow(() => SnapshotPersistence.PurgeSnapshotsAsync(typeof(ThingyAggregate), CancellationToken.None).Wait());
 }