-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve performance in cases of small or no diff updates
- Loading branch information
Showing
22 changed files
with
590 additions
and
208 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// | ||
// SignpostLoggerTests.swift | ||
// Listable-Unit-Tests | ||
// | ||
// Created by Kyle Van Essen on 6/30/20. | ||
// | ||
|
||
import XCTest | ||
@testable import Listable | ||
|
||
|
||
class SignpostLoggerTests : XCTestCase { | ||
|
||
func test_isLoggingEnabled_true_in_debug() | ||
{ | ||
/// Test to validate that no one has accidentally committed disabling `isLoggingEnabled` in `DEBUG`. | ||
|
||
#if DEBUG | ||
XCTAssertEqual(true, SignpostLogger.isLoggingEnabled) | ||
#endif | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.