Summary

Class:WireMock.Admin.Requests.LogRequestMatchModel
Assembly:WireMock.Net
File(s):C:\Users\StefHeyenrath\Documents\GitHub\WireMock.Net\src\WireMock.Net\Admin\Requests\LogRequestMatchModel.cs
Covered lines:5
Uncovered lines:0
Coverable lines:5
Total lines:50
Line coverage:100%

File(s)

C:\Users\StefHeyenrath\Documents\GitHub\WireMock.Net\src\WireMock.Net\Admin\Requests\LogRequestMatchModel.cs

#LineLine coverage
 1using System.Collections.Generic;
 2
 3namespace WireMock.Admin.Requests
 4{
 5    /// <summary>
 6    /// LogRequestMatchModel
 7    /// </summary>
 8    public class LogRequestMatchModel
 9    {
 10        /// <summary>
 11        /// Gets or sets the match-score.
 12        /// </summary>
 13        /// <value>
 14        /// The match-score.
 15        /// </value>
 3416        public double TotalScore { get; set; }
 17
 18        /// <summary>
 19        /// Gets or sets the total number of matches.
 20        /// </summary>
 21        /// <value>
 22        /// The total number of matches.
 23        /// </value>
 3524        public int TotalNumber { get; set; }
 25
 26        /// <summary>
 27        /// Gets or sets a value indicating whether this instance is perfect match.
 28        /// </summary>
 29        /// <value>
 30        /// <c>true</c> if this instance is perfect match; otherwise, <c>false</c>.
 31        /// </value>
 3532        public bool IsPerfectMatch { get; set; }
 33
 34        /// <summary>
 35        /// Gets the match percentage.
 36        /// </summary>
 37        /// <value>
 38        /// The match percentage.
 39        /// </value>
 3540        public double AverageTotalScore { get; set; }
 41
 42        /// <summary>
 43        /// Gets the match details.
 44        /// </summary>
 45        /// <value>
 46        /// The match details.
 47        /// </value>
 3548        public IList<object> MatchDetails { get; set; }
 49    }
 50}