< Summary - SonghayCore

Information
Class: Songhay.Models.ActivityOutput<T>
Assembly: SonghayCore
File(s): /home/rasx/sourceRoot/SonghayCore/SonghayCore/Models/ActivityOutput.cs
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 19
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Method coverage is only available for sponsors.

Upgrade to PRO version

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_Output()100%1100%
get_Log()100%1100%

File(s)

/home/rasx/sourceRoot/SonghayCore/SonghayCore/Models/ActivityOutput.cs

#LineLine coverage
 1namespace Songhay.Models;
 2
 3/// <summary>
 4/// Defines the conventional output
 5/// of <see cref="IActivityWithTask{TInput,TOutput}"/>.
 6/// </summary>
 7/// <typeparam name="TOutput">The type of the output.</typeparam>
 8public class ActivityOutput<TOutput>
 9{
 10    /// <summary>
 11    /// Gets or sets the output.
 12    /// </summary>
 213    public TOutput? Output { get; set; }
 14
 15    /// <summary>
 16    /// Gets or sets the log.
 17    /// </summary>
 418    public string? Log { get; set; }
 19}

Methods/Properties

get_Output()
get_Log()