Exemplo n.º 1
0
        public void TestTake()
        {
            var list = command.Take(2)
                       .ToList();

            Assert.Equal(2, list.Count);
        }