Skip to content
This repository was archived by the owner on Jan 10, 2025. It is now read-only.

Commit 3c41e3a

Browse files
author
Reda Lemeden
committed
Enable code coverage
1 parent 3dc0fd4 commit 3c41e3a

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

Verbena.xcodeproj/xcshareddata/xcschemes/Verbena.xcscheme

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@
4040
buildConfiguration = "Debug"
4141
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
4242
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
43-
shouldUseLaunchSchemeArgsEnv = "YES">
43+
shouldUseLaunchSchemeArgsEnv = "YES"
44+
codeCoverageEnabled = "YES">
4445
<Testables>
4546
<TestableReference
4647
skipped = "NO">

Verbena.xcodeproj/xcshareddata/xcschemes/VerbenaMac.xcscheme

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@
4040
buildConfiguration = "Debug"
4141
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
4242
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
43-
shouldUseLaunchSchemeArgsEnv = "YES">
43+
shouldUseLaunchSchemeArgsEnv = "YES"
44+
codeCoverageEnabled = "YES">
4445
<Testables>
4546
<TestableReference
4647
skipped = "NO">

Verbena/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>40</string>
22+
<string>42</string>
2323
<key>NSPrincipalClass</key>
2424
<string></string>
2525
</dict>

VerbenaMac/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>40</string>
22+
<string>42</string>
2323
<key>NSHumanReadableCopyright</key>
2424
<string>Copyright © 2015 Kaishin &amp; Co. All rights reserved.</string>
2525
<key>NSPrincipalClass</key>

VerbenaMacTests/NSImageFromViewSpec.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class NSImageFromViewTests: XCTestCase {
1111
let view = NSView(frame: CGRect(x: 0, y: 0, width: 100, height: 100))
1212
view.wantsLayer = true
1313
view.layer?.backgroundColor = NSColor.redColor().CGColor
14-
image = NSImage.imageWithView(view)
14+
image = NSImage.imageFromView(view)
1515
}
1616

1717
func testImageIsDrawnInContext() {

0 commit comments

Comments
 (0)