Beispiel #1
0
        public void Remove_AddDoesNotExist_DoesNotAddElementToTheRepository(TestType value, Guid tag, long timestamp)
        {
            _ourSetService.DownstreamRemove(value, new[] { tag }, timestamp);

            var repositoryValues = _repository.GetElements();
            var actualValues     = repositoryValues.Where(v => Equals(v.Value, value));

            Assert.Empty(actualValues);
        }