-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
Tests/OTCoreTests/Extensions/Foundation/Collections and Foundation Tests.swift
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,16 @@ | ||
// | ||
// Collections and Foundation Tests.swift | ||
// OTCore • https://github.com/orchetect/OTCore | ||
// © 2022 Steffan Andrews • Licensed under MIT License | ||
// | ||
|
||
import XCTest | ||
@testable import OTCore | ||
|
||
final class Extensions_Foundation_Collections_Tests: XCTestCase { | ||
func testComparisonResultInverted() { | ||
XCTAssertEqual(ComparisonResult.orderedAscending.inverted, .orderedDescending) | ||
XCTAssertEqual(ComparisonResult.orderedSame.inverted, .orderedSame) | ||
XCTAssertEqual(ComparisonResult.orderedDescending.inverted, .orderedAscending) | ||
} | ||
} |