diff --git a/SwiftyTextTable.xcodeproj/project.pbxproj b/SwiftyTextTable.xcodeproj/project.pbxproj index acbe14f..cefc4b5 100644 --- a/SwiftyTextTable.xcodeproj/project.pbxproj +++ b/SwiftyTextTable.xcodeproj/project.pbxproj @@ -87,7 +87,7 @@ 3B5BDCF51C63133100592068 /* SwiftyTextTableTests.swift */, ); name = SwiftyTextTableTests; - path = Source/SwiftyTextTableTests; + path = Tests/SwiftyTextTable; sourceTree = ""; }; 3B5BDD031C631E6200592068 /* Supporting Files */ = { @@ -387,7 +387,7 @@ isa = XCBuildConfiguration; buildSettings = { COMBINE_HIDPI_IMAGES = YES; - INFOPLIST_FILE = "Source/SwiftyTextTableTests/Supporting Files/Info.plist"; + INFOPLIST_FILE = "Tests/SwiftyTextTable/Supporting Files/Info.plist"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = com.scotthoyt.SwiftyTextTableTests; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -398,7 +398,7 @@ isa = XCBuildConfiguration; buildSettings = { COMBINE_HIDPI_IMAGES = YES; - INFOPLIST_FILE = "Source/SwiftyTextTableTests/Supporting Files/Info.plist"; + INFOPLIST_FILE = "Tests/SwiftyTextTable/Supporting Files/Info.plist"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = com.scotthoyt.SwiftyTextTableTests; PRODUCT_NAME = "$(TARGET_NAME)"; diff --git a/Source/SwiftyTextTableTests/Supporting Files/Info.plist b/Tests/SwiftyTextTable/Supporting Files/Info.plist similarity index 100% rename from Source/SwiftyTextTableTests/Supporting Files/Info.plist rename to Tests/SwiftyTextTable/Supporting Files/Info.plist diff --git a/Source/SwiftyTextTableTests/SwiftyTextTableTests.swift b/Tests/SwiftyTextTable/SwiftyTextTableTests.swift similarity index 93% rename from Source/SwiftyTextTableTests/SwiftyTextTableTests.swift rename to Tests/SwiftyTextTable/SwiftyTextTableTests.swift index 5dd25b6..4975640 100644 --- a/Source/SwiftyTextTableTests/SwiftyTextTableTests.swift +++ b/Tests/SwiftyTextTable/SwiftyTextTableTests.swift @@ -115,11 +115,4 @@ class SwiftyTextTableTests: XCTestCase { "++" XCTAssertEqual(emptyOutput, emptyExpected) } - - // MARK: - protocol XCTestCaseProvider for SPM - lazy var allTests: [(String, () throws -> Void)] = [ - ("testRenderDefault", self.testRenderDefault), - ("testRenderCustom", self.testRenderCustom), - ("testStripping", self.testRenderCustom) - ] }