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

laingsimon / courage_scores / 18427916054

11 Oct 2025 10:01AM UTC coverage: 92.254% (-3.7%) from 95.998%
18427916054

Pull #1804

github

web-flow
Merge 477772a70 into 5ef56c97d
Pull Request #1804: Add stub cosmos project

7804 of 8885 branches covered (87.83%)

Branch coverage included in aggregate %.

8 of 588 new or added lines in 18 files covered. (1.36%)

14063 of 14818 relevant lines covered (94.9%)

191.67 hits per line

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

0.0
/CourageScores.StubCosmos/Query/NotCosmosQueryOperator.cs
1
using CourageScores.StubCosmos.Query.Tokeniser;
2

3
namespace CourageScores.StubCosmos.Query;
4

5
internal class NotCosmosQueryOperator : IQueryFilterOperator {
6
    private readonly IQueryFilterOperator _operator;
7

NEW
8
    public NotCosmosQueryOperator(IQueryFilterOperator @operator)
×
9
    {
NEW
10
        _operator = @operator;
×
NEW
11
    }
×
12

13
    public bool Matches<T>(object? value, Token token)
14
    {
NEW
15
        return !_operator.Matches<T>(value, token);
×
16
    }
17
}
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