< Summary

Information
Class: ValidateLib.ErrorsAndWarnings.Warnings.SpecificWarnings.CommonPropertyWrongValueWarning
Assembly: validatelib.dll
File(s): C:\skola_karlovka\RP\code\csv-validator\CSV_Validator\ValidateLib\ErrorsAndWarnings\Warnings\SpecificWarnings\CommonPropertyWrongValueWarning.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 2
Coverable lines: 2
Total lines: 11
Line coverage: 0%
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
CommonPropertyWrongValueWarning(...)02

File(s)

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

#LineLine coverage
 1using Newtonsoft.Json.Linq;
 2
 3namespace ValidateLib.ErrorsAndWarnings.Warnings.SpecificWarnings
 4{
 5    public class CommonPropertyWrongValueWarning : WrongPropertyValueWarning
 6    {
 07        public CommonPropertyWrongValueWarning(JToken token, string value) : base(token, value)
 8        {
 09        }
 10    }
 11}