< Summary

Information
Class: ValidateLib.Metadata.PropertyParsers.Context.ContextPropertyParser
Assembly: validatelib.dll
File(s): C:\skola_karlovka\RP\code\csv-validator\CSV_Validator\ValidateLib\Metadata\PropertyParsers\Context\ContextPropertyParser.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 3
Coverable lines: 3
Total lines: 18
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
ContextPropertyParser(...)02
ParseProperty(...)02

File(s)

C:\skola_karlovka\RP\code\csv-validator\CSV_Validator\ValidateLib\Metadata\PropertyParsers\Context\ContextPropertyParser.cs

#LineLine coverage
 1using Newtonsoft.Json.Linq;
 2using ValidateLib.ErrorsAndWarnings.Warnings;
 3using ValidateLib.Metadata.Descriptors;
 4
 5namespace ValidateLib.Metadata.PropertyParsers.Context
 6{
 7    public class ContextPropertyParser : PropertyParserBase<ContextDescriptor>, IPropertyParser<ContextDescriptor>
 8    {
 09        public ContextPropertyParser(List<Warning> warnings, ContextDescriptor descriptor) : base(warnings, descriptor)
 10        {
 011        }
 12
 13        public void ParseProperty(JProperty property)
 14        {
 015            throw new NotImplementedException();
 16        }
 17    }
 18}