< Summary

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

File(s)

C:\skola_karlovka\RP\code\csv-validator\CSV_Validator\ValidateLib\ErrorsAndWarnings\Errors\Specific\ReferencedColumnDoesNotExistError.cs

#LineLine coverage
 1using ValidateLib.Metadata.Descriptors;
 2
 3namespace ValidateLib.ErrorsAndWarnings.Errors.Specific
 4{
 5    public class ReferencedColumnDoesNotExistError : GeneralError
 6    {
 7
 8        public ReferencedColumnDoesNotExistError(TableDescriptor referencingTable, ForeignKeyDescriptor fKDescriptor)
 19            : base(referencingTable?.url?._value, fKDescriptor?.reference?._value?.columnReference?._value)
 110        { }
 11    }
 12}