< Summary

Information
Class: ValidateLib.Metadata.Parsers.TableGroupParser
Assembly: validatelib.dll
File(s): C:\skola_karlovka\RP\code\csv-validator\CSV_Validator\ValidateLib\Metadata\Parsers\TableGroupParser.cs
Line coverage
100%
Covered lines: 1
Uncovered lines: 0
Coverable lines: 1
Total lines: 11
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
TableGroupParser(...)20

File(s)

C:\skola_karlovka\RP\code\csv-validator\CSV_Validator\ValidateLib\Metadata\Parsers\TableGroupParser.cs

#LineLine coverage
 1using ValidateLib.ErrorsAndWarnings.Warnings;
 2using ValidateLib.Metadata.Descriptors;
 3
 4namespace ValidateLib.Metadata.Parsers
 5{
 6    public class TableGroupParser : DescriptorParserBase<TableGroupDescriptor>, IParser<TableGroupDescriptor>
 7    {
 18        public TableGroupParser(List<Warning> warnings, TableGroupDescriptor? descriptor) : base(warnings, descriptor) {
 9
 10    }
 11}