Summary

Class:WireMock.Admin.Mappings.PathModel
Assembly:WireMock.Net
File(s):C:\Users\azureuser\Documents\Github\WireMock.Net\src\WireMock.Net\Admin\Mappings\PathModel.cs
Covered lines:1
Uncovered lines:1
Coverable lines:2
Total lines:24
Line coverage:50%

File(s)

C:\Users\azureuser\Documents\Github\WireMock.Net\src\WireMock.Net\Admin\Mappings\PathModel.cs

#LineLine coverage
 1namespace WireMock.Admin.Mappings
 2{
 3    /// <summary>
 4    /// PathModel
 5    /// </summary>
 6    public class PathModel
 7    {
 8        /// <summary>
 9        /// Gets or sets the matchers.
 10        /// </summary>
 11        /// <value>
 12        /// The matchers.
 13        /// </value>
 1614        public MatcherModel[] Matchers { get; set; }
 15
 16        /// <summary>
 17        /// Gets or sets the functions.
 18        /// </summary>
 19        /// <value>
 20        /// The functions.
 21        /// </value>
 022        public string[] Funcs { get; set; }
 23    }
 24}