コード例 #1
0
ファイル: LambdaRelatedTests.cs プロジェクト: Ouarzy/NFluent
        public void CanRaiseWithFailingPropertyGetter()
        {
            var sut = new LambdaRelatedTests.AnObjectThatCanCrashWithPropertyGet(0);

            Check.ThatCode(() => sut.BeastBreaker).Throws <DivideByZeroException>();

            // obsolete for coverage
            Check.That(() => sut.BeastBreaker).Throws <DivideByZeroException>();
        }
コード例 #2
0
        public void CanRaiseWithFailingPropertyGetter()
        {
            var sut = new LambdaRelatedTests.AnObjectThatCanCrashWithPropertyGet(0);
            Check.ThatCode(() => sut.BeastBreaker).Throws<DivideByZeroException>();

            // obsolete for coverage
            Check.That(() => sut.BeastBreaker).Throws<DivideByZeroException>();
        }