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

loresoft / KickStart / 17529667504

07 Sep 2025 02:14PM UTC coverage: 60.921%. Remained the same
17529667504

push

github

pwelter34
reformat code base

162 of 364 branches covered (44.51%)

Branch coverage included in aggregate %.

634 of 951 new or added lines in 72 files covered. (66.67%)

4 existing lines in 4 files now uncovered.

658 of 982 relevant lines covered (67.01%)

20.4 hits per line

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

44.44
/test/Test.Core/UserService.cs
1
using System.Linq.Expressions;
2

3
namespace Test.Core;
4

5
public class UserService : IUserService
6
{
7

8
    public IConnection Connection { get; }
11✔
9

10
    public UserService(IConnection connection)
7✔
11
    {
12
        Connection = connection;
7✔
13
    }
7✔
14

15

16
    public User Add(User entity)
17
    {
NEW
18
        return null;
×
19
    }
20

21
    public bool Update(User entity)
22
    {
NEW
23
        return false;
×
24
    }
25

26
    public bool Delete(User entity)
27
    {
NEW
28
        return false;
×
29
    }
30

31
    public User Get(Expression<Func<User, bool>> filter)
32
    {
NEW
33
        return null;
×
34
    }
35

36
    public ICollection<User> GetAll()
37
    {
NEW
38
        return null;
×
39
    }
40
}
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