< Summary

Information
Class: UIBlazor.Services.Models.ToolCallFunction
Assembly: UIBlazor
File(s): /home/runner/work/InvAit/InvAit/UIBlazor/Services/Models/ToolCallFunction.cs
Tag: 71_26091983037
Line coverage
0%
Covered lines: 0
Uncovered lines: 2
Coverable lines: 2
Total lines: 19
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

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
get_Name()100%210%
get_Arguments()100%210%

File(s)

/home/runner/work/InvAit/InvAit/UIBlazor/Services/Models/ToolCallFunction.cs

#LineLine coverage
 1namespace UIBlazor.Services.Models;
 2
 3/// <summary>
 4/// Represents a class that encapsulates a function or method to be called.
 5/// </summary>
 6public class ToolCallFunction
 7{
 8    /// <summary>
 9    /// The name of the function to be executed.
 10    /// </summary>
 11    [JsonPropertyName("name")]
 012    public string Name { get; set; } = string.Empty;
 13
 14    /// <summary>
 15    /// Gets or sets the function's arguments.
 16    /// </summary>
 17    [JsonPropertyName("arguments")]
 018    public string Arguments { get; set; } = string.Empty;
 19}

Methods/Properties

get_Name()
get_Arguments()