< Summary

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

File(s)

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

#LineLine coverage
 1using ValidateLib.Metadata.Descriptors;
 2
 3namespace ValidateLib.ErrorsAndWarnings.Errors.Specific
 4{
 5    public class TwoSatisfyingReferencedTablesError : GeneralError
 6    {
 7
 8        public TwoSatisfyingReferencedTablesError(TableDescriptor referencingTable, ForeignKeyDescriptor fKDescriptor) :
 09            base(referencingTable?.url?._value,
 010                fKDescriptor!.reference!._value?.resource is null ?
 011                    fKDescriptor?.reference?._value?.schemaReference?._value : fKDescriptor?.reference?._value?.resource
 012        { }
 13
 14    }
 15}