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

lucaslorentz / auto-compute / 11763467169

10 Nov 2024 08:07AM UTC coverage: 77.292% (-12.0%) from 89.255%
11763467169

push

github

lucaslorentz
Add initial support for computed navigations and observers

168 of 433 new or added lines in 25 files covered. (38.8%)

7 existing lines in 5 files now uncovered.

1467 of 1898 relevant lines covered (77.29%)

109.86 hits per line

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

50.0
/src/LLL.AutoCompute/ChangeCalculations/VoidChangeCalculation.cs
1

2
namespace LLL.AutoCompute.ChangeCalculations;
3

UNCOV
4
public record class VoidChangeCalculation<TValue>
×
5
    : IChangeCalculation<TValue, VoidChange>
6
{
7
    public bool IsIncremental => false;
40✔
8
    public bool PreLoadEntities => false;
10✔
9

10
    public VoidChange GetChange(IComputedValues<TValue> computedValues)
11
    {
12
        return default;
7✔
13
    }
14

15
    public VoidChange CalculateChange(TValue original, TValue current)
16
    {
17
        return default;
×
18
    }
19

20
    public bool IsNoChange(VoidChange result)
21
    {
22
        return false;
7✔
23
    }
24

25
    public VoidChange DeltaChange(VoidChange previous, VoidChange current)
26
    {
27
        return default;
×
28
    }
29

30
    public VoidChange ApplyChange(VoidChange value, VoidChange change)
31
    {
32
        return default;
×
33
    }
34
}
35

36
public record struct VoidChange();
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