< Summary

Information
Class: ValidateLib.ErrorsAndWarnings.Errors.ValidationErrors.ColumnsCountMismatchValidationError
Assembly: validatelib.dll
File(s): C:\skola_karlovka\RP\code\csv-validator\CSV_Validator\ValidateLib\ErrorsAndWarnings\Errors\ValidationErrors\ColumnsCountMismatchValidationError.cs
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
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
ColumnsCountMismatchValidationError(...)100

File(s)

C:\skola_karlovka\RP\code\csv-validator\CSV_Validator\ValidateLib\ErrorsAndWarnings\Errors\ValidationErrors\ColumnsCountMismatchValidationError.cs

#LineLine coverage
 1using ValidateLib.TabularData.AnnotatedTabularDataModel;
 2
 3namespace ValidateLib.ErrorsAndWarnings.Errors.ValidationErrors
 4{
 5    public class ColumnsCountMismatchValidationError : GeneralError
 6    {
 17        public ColumnsCountMismatchValidationError(Row annotatedRow) : base(annotatedRow.table.url, annotatedRow.table.c
 8        {
 19        }
 10    }
 11}