コード例 #1
0
 protected override void Establish_That()
 {
     TestedClass.Expect(tc => tc.InternalDispose()).CallOriginalMethod(OriginalCallOptions.NoExpectation);
 }
コード例 #2
0
ファイル: UnitTest2.cs プロジェクト: spekt/testlogger
 public Fixture()
 {
     Sut = new TestedClass();
 }
コード例 #3
0
        public void MaxElementExceptionTest()
        {
            TestedClass tested = new TestedClass();

            Assert.ThrowsException <ArgumentNullException>(() => tested.MaxElement(null));
        }
コード例 #4
0
        public void MaxElementEmptyExceptionTest()
        {
            TestedClass tested = new TestedClass();

            Assert.ThrowsException <EmptyListException>(() => tested.MaxElement(new List <int>()));
        }
コード例 #5
0
 public void TestMethodSum()
 {
     Assert.AreEqual(3, TestedClass.SumTwo(1));
 }