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

google / santa / 10309967616

08 Aug 2024 09:43PM UTC coverage: 62.69% (-0.4%) from 63.125%
10309967616

push

github

web-flow
sync: Fix Content-Type logic bug, add test (#1412)

5612 of 13404 branches covered (41.87%)

Branch coverage included in aggregate %.

12 of 12 new or added lines in 2 files covered. (100.0%)

170 existing lines in 8 files now uncovered.

18659 of 25312 relevant lines covered (73.72%)

6451.94 hits per line

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

0.0
/Source/gui/SNTMessageWindowController.m
1
#import "Source/gui/SNTMessageWindowController.h"
2

3
@implementation SNTMessageWindowController
4

UNCOV
5
- (IBAction)showWindow:(id)sender {
×
UNCOV
6
  [self.window setLevel:NSPopUpMenuWindowLevel];
×
UNCOV
7
  [self.window setMovableByWindowBackground:YES];
×
UNCOV
8
  [self.window makeKeyAndOrderFront:sender];
×
UNCOV
9
  [self.window center];
×
UNCOV
10
  [NSApp activateIgnoringOtherApps:YES];
×
UNCOV
11
}
×
12
- (IBAction)closeWindow:(id)sender {
×
13
  [self windowWillClose:sender];
×
14
  [self.window close];
×
15
}
×
16

17
- (void)windowWillClose:(NSNotification *)notification {
×
18
  if (!self.delegate) return;
×
19

20
  if (self.silenceFutureNotifications) {
×
21
    [self.delegate windowDidCloseSilenceHash:[self messageHash]];
×
22
  } else {
×
23
    [self.delegate windowDidCloseSilenceHash:nil];
×
24
  }
×
25
}
×
26

27
- (NSString *)messageHash {
×
28
  [self doesNotRecognizeSelector:_cmd];
×
29
  return nil;
×
30
}
×
31

32
@end
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