< Summary

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

File(s)

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

#LineLine coverage
 1using ValidateLib.Metadata.Descriptors;
 2
 3namespace ValidateLib.ErrorsAndWarnings.Errors.Specific
 4{
 5    public class NoSatisfyingReferencedTableError : GeneralError
 6    {
 7        public NoSatisfyingReferencedTableError(TableDescriptor referencingTable, ForeignKeyDescriptor fKDescriptor)
 18            : base(referencingTable?.url?._value,
 19                fKDescriptor!.reference!._value?.resource is null ?
 110                    fKDescriptor?.reference?._value?.schemaReference?._value : fKDescriptor?.reference?._value?.resource
 11        {
 12
 113        }
 14
 15
 16    }
 17}