Akka.Persistence.TestKit.Snapshot.SnapshotStoreSpec.SnapshotStore_should_not_load_a_snapshot_given_non_matching_timestamp_criteria C# (CSharp) Method

SnapshotStore_should_not_load_a_snapshot_given_non_matching_timestamp_criteria() private method

        public void SnapshotStore_should_not_load_a_snapshot_given_non_matching_timestamp_criteria()
        {
            SnapshotStore.Tell(new LoadSnapshot(Pid, new SnapshotSelectionCriteria(long.MaxValue, new DateTime(100000)), long.MaxValue), _senderProbe.Ref);
            _senderProbe.ExpectMsg<LoadSnapshotResult>(result => result.Snapshot == null && result.ToSequenceNr == long.MaxValue);
        }