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:5
Uncovered lines:0
Coverable lines:5
Total lines:48
Line coverage:100%

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>
 3222        public bool? UseSSL { get; set; }
 23
 24        /// <summary>
 25        /// Gets or sets the start admin interface.
 26        /// </summary>
 27        /// <value>
 28        /// The start admin interface.
 29        /// </value>
 1830        public bool? StartAdminInterface { get; set; }
 31
 32        /// <summary>
 33        /// Gets or sets the read static mappings.
 34        /// </summary>
 35        /// <value>
 36        /// The read static mappings.
 37        /// </value>
 1838        public bool? ReadStaticMappings { get; set; }
 39
 40        /// <summary>
 41        /// Gets or sets the urls.
 42        /// </summary>
 43        /// <value>
 44        /// The urls.
 45        /// </value>
 2246        public string[] Urls { get; set; }
 47    }
 48}