示例#1
0
        public void girl_is_empty_should_throw_exception()
        {
            var girls = new Girl[]
            {
            };

            TestDelegate action = () => girls.JoeyFirst(current => current.Age > 25);

            Assert.Throws <InvalidOperationException>(action);
        }