swhitty / SwiftDraw

Compare 1fe178b ... +0 ... e5eadea

No flags found

Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.

e.g., #unittest #integration

#production #enterprise

#frontend #backend

Learn more about Codecov Flags here.

Showing 1 of 4 files from the diff.

@@ -46,9 +46,14 @@
Loading
46 46
  }
47 47
48 48
  @objc
49 -
  static func svgNamed(_ name: String, in bundle: Bundle = Bundle.main) -> NSImage? {
49 +
  static func svgNamed(_ name: String, in bundle: Bundle) -> NSImage? {
50 50
    NSImage(svgNamed: name, in: bundle)
51 51
  }
52 +
53 +
  @objc
54 +
  static func svgNamed(_ name: String) -> NSImage? {
55 +
      NSImage(svgNamed: name, in: .main)
56 +
  }
52 57
}
53 58
54 59
public extension Image {

Everything is accounted for!

No changes detected that need to be reviewed.
What changes does Codecov check for?
Lines, not adjusted in diff, that have changed coverage data.
Files that introduced coverage data that had none before.
Files that have missing coverage data that once were tracked.
Files Coverage
Project Totals (59 files) 76.08%
Loading