~adam-rpconnelly/nunit-3.0/bug-483845

« back to all changes in this revision

Viewing changes to src/framework/Api/ResultState.cs

  • Committer: Charlie Poole
  • Date: 2010-01-08 17:21:03 UTC
  • Revision ID: charlie@nunit.com-20100108172103-o065jps8sbft4hhq
Further simplification of API and internals: Removing TestInfo and NUnitFramework classes, eliminating all references to the framework from the test runner and using xml to communicate results back to the runner.

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
        /// </summary>
69
69
        Cancelled
70
70
        }
71
 
 
72
 
    /// <summary>
73
 
    /// The FailureSite enum indicates the stage of a test
74
 
    /// in which an error or failure occured.
75
 
    /// </summary>
76
 
    public enum FailureSite
77
 
    {
78
 
        /// <summary>
79
 
        /// Failure in the test itself
80
 
        /// </summary>
81
 
        Test,
82
 
 
83
 
        /// <summary>
84
 
        /// Failure in the SetUp method
85
 
        /// </summary>
86
 
        SetUp,
87
 
 
88
 
        /// <summary>
89
 
        /// Failure in the TearDown method
90
 
        /// </summary>
91
 
        TearDown,
92
 
 
93
 
        /// <summary>
94
 
        /// Failure of a parent test
95
 
        /// </summary>
96
 
        Parent,
97
 
 
98
 
        /// <summary>
99
 
        /// Failure of a child test
100
 
        /// </summary>
101
 
        Child
102
 
    }
103
 
 
104
71
}