コード例 #1
0
        public void then_exception_for_each_file_is_returned_in_result()
        {
            var expected = Enumerable.Range(0, FileCount).Select(_ => _testException);

            ResultErrors.Should().BeEquivalentTo(expected);
        }
コード例 #2
0
 public ApplicationServiceOutputBase()
 {
     ResultErrors = new ResultErrors();
 }
コード例 #3
0
 public void then_thrown_exception_is_returned_as_result()
 {
     ResultErrors.Should().BeEquivalentTo(_testException);
 }
コード例 #4
0
 public void then_no_errors()
 {
     ResultErrors.Should().BeNull();
 }
コード例 #5
0
ファイル: when_ran_twice.cs プロジェクト: kbabiy/LogCast
 public void then_error_is_empty()
 {
     ResultErrors.Should().BeNull();
 }