< Summary

Information
Class: Spdx3.Model.ExpandedLicensing.Classes.IndividualLicensingInfo
Assembly: Spdx3
File(s): /home/runner/work/Spdx3/Spdx3/Spdx3/Model/ExpandedLicensing/Classes/IndividualLicensingInfo.cs
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
Total lines: 25
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

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor()100%11100%
.ctor(...)100%11100%

File(s)

/home/runner/work/Spdx3/Spdx3/Spdx3/Model/ExpandedLicensing/Classes/IndividualLicensingInfo.cs

#LineLine coverage
 1using System.Diagnostics.CodeAnalysis;
 2using Spdx3.Model.Core.Classes;
 3using Spdx3.Model.SimpleLicensing.Classes;
 4using Spdx3.Utility;
 5
 6namespace Spdx3.Model.ExpandedLicensing.Classes;
 7
 8/// <summary>
 9/// A concrete subclass of AnyLicenseInfo used by Individuals in the ExpandedLicensing profile.
 10/// https://spdx.github.io/spdx-spec/v3.0.1/model/ExpandedLicensing/Classes/IndividualLicensingInfo/
 11/// </summary>
 12public class IndividualLicensingInfo : AnyLicenseInfo
 13{
 14    /// <summary>
 15    /// No-arg constructor required for serialization/deserialization
 16    /// </summary>
 217    protected internal IndividualLicensingInfo()
 18    {
 219    }
 20
 21    [SetsRequiredMembers]
 422    public IndividualLicensingInfo(Catalog catalog, CreationInfo creationInfo) : base(catalog, creationInfo)
 23    {
 424    }
 25}