< Summary

Information
Class: ValidateLib.ErrorsAndWarnings.Warnings.SpecificWarnings.URITemplateWrongValueWarning
Assembly: validatelib.dll
File(s): C:\skola_karlovka\RP\code\csv-validator\CSV_Validator\ValidateLib\ErrorsAndWarnings\Warnings\SpecificWarnings\URITemplateWrongValueWarning.cs
Line coverage
100%
Covered lines: 1
Uncovered lines: 0
Coverable lines: 1
Total lines: 9
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBlocks covered Blocks not covered
URITemplateWrongValueWarning(...)20

File(s)

C:\skola_karlovka\RP\code\csv-validator\CSV_Validator\ValidateLib\ErrorsAndWarnings\Warnings\SpecificWarnings\URITemplateWrongValueWarning.cs

#LineLine coverage
 1using Newtonsoft.Json.Linq;
 2
 3namespace ValidateLib.ErrorsAndWarnings.Warnings.SpecificWarnings
 4{
 5    public class URITemplateWrongValueWarning : WrongPropertyValueWarning
 6    {
 17        public URITemplateWrongValueWarning(JToken token, string name) : base(token, name) { }
 8    }
 9}