< Summary

Information
Class: ValidateLib.Metadata.ErrorHandling.ErrorHandlingInfo
Assembly: validatelib.dll
File(s): C:\skola_karlovka\RP\code\csv-validator\CSV_Validator\ValidateLib\Metadata\ErrorHandling\ErrorHandlingInfo.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
ErrorHandlingInfo(...)30

File(s)

C:\skola_karlovka\RP\code\csv-validator\CSV_Validator\ValidateLib\Metadata\ErrorHandling\ErrorHandlingInfo.cs

#LineLine coverage
 1using ValidateLib.Metadata.Descriptors;
 2
 3namespace ValidateLib.Metadata.ErrorHandling
 4{
 5    /// <summary>
 6    /// Used for more detailed info when throwing errors in the metadata document.
 7    /// Data class.
 8    /// </summary>
 9    public class ErrorHandlingInfo
 10    {
 111        public TableDescriptor tableDescriptor { get; set; }
 112        public ErrorHandlingInfo(TableDescriptor tableDescriptor)
 13        {
 114            this.tableDescriptor = tableDescriptor;
 115        }
 16    }
 17}