Exemplo n.º 1
0
        public void BatchAdd()
        {
            var people = _generator.Take(100).ToList();

            _source.AddOrUpdate(people);

            _list.Count.Should().Be(100, "Should be 100 items in the collection");
            _list.Should().BeEquivalentTo(_list, "Collections should be equivalent");
        }