Summary

Class:WireMock.ScenarioState
Assembly:WireMock.Net
File(s):C:\Users\StefHeyenrath\Documents\GitHub\WireMock.Net\src\WireMock.Net\ScenarioState.cs
Covered lines:4
Uncovered lines:0
Coverable lines:4
Total lines:28
Line coverage:100%

File(s)

C:\Users\StefHeyenrath\Documents\GitHub\WireMock.Net\src\WireMock.Net\ScenarioState.cs

#LineLine coverage
 1namespace WireMock
 2{
 3    /// <summary>
 4    /// The ScenarioState
 5    /// </summary>
 6    public class ScenarioState
 7    {
 8        /// <summary>
 9        /// Gets or sets the Name (from the Scenario).
 10        /// </summary>
 711        public string Name { get; set; }
 12
 13        /// <summary>
 14        /// Gets or sets the NextState.
 15        /// </summary>
 4116        public string NextState { get; set; }
 17
 18        /// <summary>
 19        /// Gets or sets a value indicating whether this <see cref="ScenarioState"/> is started.
 20        /// </summary>
 1221        public bool Started { get; set; }
 22
 23        /// <summary>
 24        /// Gets or sets a value indicating whether this <see cref="ScenarioState"/> is finished.
 25        /// </summary>
 1226        public bool Finished { get; set; }
 27    }
 28}

Methods/Properties

Name()
NextState()
Started()
Finished()