Пример #1
0
        protected override GatheredResultSet GetTestResult()
        {
            var result = new GatheredResultSet();

            result.Add(new StoryResult
            {
                Summary = "first story summary"
            });

            result.Add(new StoryResult
            {
                Summary = "second story summary"
            });

            return(result);
        }
 public void Handle(GatheredResultSet result)
 {
     TestResult = result;
 }
Пример #3
0
        protected override GatheredResultSet GetTestResult()
        {
            var result = new GatheredResultSet();
            result.Add(new StoryResult
                           {
                               Summary = "first story summary"
                           });

            result.Add(new StoryResult
                           {
                               Summary = "second story summary"
                           });

            return result;
        }
Пример #4
0
 public void Handle(GatheredResultSet result)
 {
     TestResult = result;
 }