Summary

Class:WireMock.Server.FluentMockServerSettings
Assembly:WireMock.Net
File(s):C:\Users\Stef\Documents\GitHub\WireMock.Net\src\WireMock.Net\Server\FluentMockServerSettings.cs
Covered lines:6
Uncovered lines:0
Coverable lines:6
Total lines:54
Line coverage:100%

Metrics

MethodCyclomatic complexity  NPath complexity  Sequence coverage  Branch coverage  
.ctor()10100100

File(s)

C:\Users\Stef\Documents\GitHub\WireMock.Net\src\WireMock.Net\Server\FluentMockServerSettings.cs

#LineLine coverage
 1namespace WireMock.Server
 2{
 3    /// <summary>
 4    /// FluentMockServerSettings
 5    /// </summary>
 6    public class FluentMockServerSettings
 7    {
 8        /// <summary>
 9        /// Gets or sets the port.
 10        /// </summary>
 11        /// <value>
 12        /// The port.
 13        /// </value>
 3214        public int? Port { get; set; }
 15
 16        /// <summary>
 17        /// Gets or sets the use SSL.
 18        /// </summary>
 19        /// <value>
 20        /// The use SSL.
 21        /// </value>
 22        // ReSharper disable once InconsistentNaming
 3223        public bool? UseSSL { get; set; }
 24
 25        /// <summary>
 26        /// Gets or sets the start admin interface.
 27        /// </summary>
 28        /// <value>
 29        /// The start admin interface.
 30        /// </value>
 1831        public bool? StartAdminInterface { get; set; }
 32
 33        /// <summary>
 34        /// Gets or sets the read static mappings.
 35        /// </summary>
 36        /// <value>
 37        /// The read static mappings.
 38        /// </value>
 1839        public bool? ReadStaticMappings { get; set; }
 40
 41        /// <summary>
 42        /// Gets or sets the urls.
 43        /// </summary>
 44        /// <value>
 45        /// The urls.
 46        /// </value>
 2247        public string[] Urls { get; set; }
 48
 49        /// <summary>
 50        /// StartTimeout
 51        /// </summary>
 1852        public int StartTimeout { get; set; } = 10000;
 53    }
 54}