Summary

Class:WireMock.Owin.WireMockMiddlewareOptions
Assembly:WireMock.Net
File(s):C:\Users\Stef\Documents\GitHub\WireMock.Net\src\WireMock.Net\Owin\WireMockMiddlewareOptions.cs
Covered lines:9
Uncovered lines:1
Coverable lines:10
Total lines:26
Line coverage:90%

Metrics

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

File(s)

C:\Users\Stef\Documents\GitHub\WireMock.Net\src\WireMock.Net\Owin\WireMockMiddlewareOptions.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using WireMock.Logging;
 4using WireMock.Matchers;
 5
 6namespace WireMock.Owin
 7{
 8    internal class WireMockMiddlewareOptions
 9    {
 1510        public TimeSpan? RequestProcessingDelay { get; set; }
 11
 012        public IMatcher AuthorizationMatcher { get; set; }
 13
 1314        public bool AllowPartialMapping { get; set; }
 15
 11716        public IList<Mapping> Mappings { get; set; }
 17
 5418        public IList<LogEntry> LogEntries { get; set; }
 19
 1820        public WireMockMiddlewareOptions()
 1821        {
 1822            Mappings = new List<Mapping>();
 1823            LogEntries = new List<LogEntry>();
 1824        }
 25    }
 26}