• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

net-daemon / netdaemon / 6682362857

29 Oct 2023 08:56AM UTC coverage: 79.505% (-1.2%) from 80.706%
6682362857

push

github

web-flow
Bump Roslynator.Analyzers from 4.5.0 to 4.6.1 (#960)

Bumps [Roslynator.Analyzers](https://github.com/dotnet/roslynator) from 4.5.0 to 4.6.1.
- [Release notes](https://github.com/dotnet/roslynator/releases)
- [Changelog](https://github.com/dotnet/roslynator/blob/main/ChangeLog.md)
- [Commits](https://github.com/dotnet/roslynator/compare/v4.5.0...v4.6.1)

---
updated-dependencies:
- dependency-name: Roslynator.Analyzers
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

802 of 1143 branches covered (0.0%)

Branch coverage included in aggregate %.

2895 of 3507 relevant lines covered (82.55%)

50.4 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

78.57
/src/Client/NetDaemon.HassClient/Internal/HomeAssistant/Commands/CreateInputBooleanHelperCommand.cs
1
using System.Text.Json.Serialization;
2
using NetDaemon.Client.HomeAssistant.Model;
3

4
namespace NetDaemon.Client.Internal.HomeAssistant.Commands;
5

6
internal record CreateInputBooleanHelperCommand : CommandMessage
×
7
{
8
    public CreateInputBooleanHelperCommand()
3✔
9
    {
10
        Type = "input_boolean/create";
3✔
11
    }
3✔
12

13
    [JsonPropertyName("name")] public required string Name { get; init; }
3✔
14
}
15

16
internal record DeleteInputBooleanHelperCommand : CommandMessage
×
17
{
18
    public DeleteInputBooleanHelperCommand()
5✔
19
    {
20
        Type = "input_boolean/delete";
5✔
21
    }
5✔
22

23
    [JsonPropertyName("input_boolean_id")] public required string InputBooleanId { get; init; } = string.Empty;
17✔
24
}
25

26
internal record ListInputBooleanHelperCommand : CommandMessage
×
27
{
28
    public ListInputBooleanHelperCommand()
6✔
29
    {
30
        Type = "input_boolean/list";
6✔
31
    }
6✔
32
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc