MongoDB.DriverUnitTests.MongoCollectionTests.TestGetMore C# (CSharp) Метод

TestGetMore() приватный Метод

private TestGetMore ( ) : void
Результат void
        public void TestGetMore()
        {
            using (_server.RequestStart(_database))
            {
                _collection.RemoveAll();
                var count = _server.Primary.MaxMessageLength / 1000000;
                for (int i = 0; i < count; i++)
                {
                    var document = new BsonDocument("data", new BsonBinaryData(new byte[1000000]));
                    _collection.Insert(document);
                }
                var list = _collection.FindAll().ToList();
            }
        }