Esempio n. 1
0
        public void AllReturnsTrueWhenSourceIsEmpty()
        {
            var source = new Int32[0];

            Assert.That(source.All(i => i == 0), Is.True);
        }