From cfc00c8450f1f064c196181dfdd7961fa334397a Mon Sep 17 00:00:00 2001 From: Jared Carlson Date: Fri, 28 Jul 2023 23:46:17 -0400 Subject: [PATCH 1/2] Added simple SPM transitive dependency project, and then created a workspace with an app that depends on a framework (in xcode project) and that framework depends on an SPM. I need to check to make sure it actually recreates the problem but looks like it ought to be close. Saving where I am though because Xcode sux so badly --- Package.resolved | 4 +- .../project.pbxproj | 637 ++++++++++++++++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../SimpleTransitiveApp/AppDelegate.swift | 36 + .../AccentColor.colorset/Contents.json | 11 + .../AppIcon.appiconset/Contents.json | 13 + .../Assets.xcassets/Contents.json | 6 + .../Base.lproj/LaunchScreen.storyboard | 25 + .../Base.lproj/Main.storyboard | 24 + .../SimpleTransitiveApp/Info.plist | 25 + .../SimpleTransitiveApp/SceneDelegate.swift | 52 ++ .../SimpleTransitiveApp/ViewController.swift | 23 + .../SimpleTransitiveAppTests.swift | 36 + .../SimpleTransitiveAppUITests.swift | 41 ++ ...impleTransitiveAppUITestsLaunchTests.swift | 32 + .../SwiftCalc/.gitignore | 9 + .../SwiftCalc/Package.swift | 28 + .../Sources/SwiftCalc/SwiftCalc.swift | 16 + .../Tests/SwiftCalcTests/SwiftCalcTests.swift | 12 + .../project.pbxproj | 503 +++++++++++++ .../SwiftCalculation/Calculation.swift | 21 + .../SwiftCalculation.docc/SwiftCalculation.md | 13 + .../SwiftCalculation/SwiftCalculation.h | 18 + .../SwiftCalculationTests.swift | 36 + .../SwiftMath/.gitignore | 9 + .../SwiftMath/Package.swift | 23 + .../Sources/SwiftMath/SwiftMath.swift | 26 + .../Tests/SwiftMathTests/SwiftMathTests.swift | 12 + .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../project.pbxproj | 607 ++++++++++++++++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../TransitivePBXtoSPMApp/AppDelegate.swift | 36 + .../AccentColor.colorset/Contents.json | 11 + .../AppIcon.appiconset/Contents.json | 13 + .../Assets.xcassets/Contents.json | 6 + .../Base.lproj/LaunchScreen.storyboard | 25 + .../Base.lproj/Main.storyboard | 24 + .../TransitivePBXtoSPMApp/Info.plist | 25 + .../TransitivePBXtoSPMApp/SceneDelegate.swift | 52 ++ .../ViewController.swift | 22 + .../TransitivePBXtoSPMAppTests.swift | 36 + .../TransitivePBXtoSPMAppUITests.swift | 41 ++ ...nsitivePBXtoSPMAppUITestsLaunchTests.swift | 32 + .../project.pbxproj | 678 ++++++++++++++++++ .../TransitiveTestApp/AppDelegate.swift | 36 + .../AccentColor.colorset/Contents.json | 11 + .../AppIcon.appiconset/Contents.json | 13 + .../Assets.xcassets/Contents.json | 6 + .../Base.lproj/LaunchScreen.storyboard | 25 + .../Base.lproj/Main.storyboard | 24 + .../TransitiveTestApp/Info.plist | 25 + .../TransitiveTestApp/SceneDelegate.swift | 52 ++ .../TransitiveTestApp/ViewController.swift | 23 + .../TransitiveTestAppTests.swift | 36 + .../TransitiveTestAppUITests.swift | 41 ++ .../TransitiveTestAppUITestsLaunchTests.swift | 32 + 59 files changed, 3666 insertions(+), 2 deletions(-) create mode 100644 Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.pbxproj create mode 100644 Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/AppDelegate.swift create mode 100644 Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/AccentColor.colorset/Contents.json create mode 100644 Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/Contents.json create mode 100644 Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Base.lproj/LaunchScreen.storyboard create mode 100644 Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Base.lproj/Main.storyboard create mode 100644 Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Info.plist create mode 100644 Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/SceneDelegate.swift create mode 100644 Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/ViewController.swift create mode 100644 Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppTests/SimpleTransitiveAppTests.swift create mode 100644 Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppUITests/SimpleTransitiveAppUITests.swift create mode 100644 Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppUITests/SimpleTransitiveAppUITestsLaunchTests.swift create mode 100644 Tests/transitive-project-and-components/SwiftCalc/.gitignore create mode 100644 Tests/transitive-project-and-components/SwiftCalc/Package.swift create mode 100644 Tests/transitive-project-and-components/SwiftCalc/Sources/SwiftCalc/SwiftCalc.swift create mode 100644 Tests/transitive-project-and-components/SwiftCalc/Tests/SwiftCalcTests/SwiftCalcTests.swift create mode 100644 Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculation.xcodeproj/project.pbxproj create mode 100644 Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculation/Calculation.swift create mode 100755 Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculation/SwiftCalculation.docc/SwiftCalculation.md create mode 100644 Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculation/SwiftCalculation.h create mode 100644 Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculationTests/SwiftCalculationTests.swift create mode 100644 Tests/transitive-project-and-components/SwiftMath/.gitignore create mode 100644 Tests/transitive-project-and-components/SwiftMath/Package.swift create mode 100644 Tests/transitive-project-and-components/SwiftMath/Sources/SwiftMath/SwiftMath.swift create mode 100644 Tests/transitive-project-and-components/SwiftMath/Tests/SwiftMathTests/SwiftMathTests.swift create mode 100644 Tests/transitive-project-and-components/TransitivePBXtoSPM.xcworkspace/contents.xcworkspacedata create mode 100644 Tests/transitive-project-and-components/TransitivePBXtoSPM.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.pbxproj create mode 100644 Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/AppDelegate.swift create mode 100644 Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/AccentColor.colorset/Contents.json create mode 100644 Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/Contents.json create mode 100644 Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Base.lproj/LaunchScreen.storyboard create mode 100644 Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Base.lproj/Main.storyboard create mode 100644 Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Info.plist create mode 100644 Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/SceneDelegate.swift create mode 100644 Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/ViewController.swift create mode 100644 Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppTests/TransitivePBXtoSPMAppTests.swift create mode 100644 Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppUITests/TransitivePBXtoSPMAppUITests.swift create mode 100644 Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppUITests/TransitivePBXtoSPMAppUITestsLaunchTests.swift create mode 100644 Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp.xcodeproj/project.pbxproj create mode 100644 Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/AppDelegate.swift create mode 100644 Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/AccentColor.colorset/Contents.json create mode 100644 Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/Contents.json create mode 100644 Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Base.lproj/LaunchScreen.storyboard create mode 100644 Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Base.lproj/Main.storyboard create mode 100644 Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Info.plist create mode 100644 Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/SceneDelegate.swift create mode 100644 Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/ViewController.swift create mode 100644 Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppTests/TransitiveTestAppTests.swift create mode 100644 Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppUITests/TransitiveTestAppUITests.swift create mode 100644 Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppUITests/TransitiveTestAppUITestsLaunchTests.swift diff --git a/Package.resolved b/Package.resolved index 585af65..8fb0198 100644 --- a/Package.resolved +++ b/Package.resolved @@ -104,8 +104,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/jpsim/Yams.git", "state" : { - "revision" : "f47ba4838c30dbd59998a4e4c87ab620ff959e8a", - "version" : "5.0.5" + "revision" : "0d9ee7ea8c4ebd4a489ad7a73d5c6cad55d6fed3", + "version" : "5.0.6" } } ], diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.pbxproj b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.pbxproj new file mode 100644 index 0000000..62ad99b --- /dev/null +++ b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.pbxproj @@ -0,0 +1,637 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 56; + objects = { + +/* Begin PBXBuildFile section */ + 04C16BBB2A7353CA00746962 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04C16BBA2A7353CA00746962 /* AppDelegate.swift */; }; + 04C16BBD2A7353CA00746962 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04C16BBC2A7353CA00746962 /* SceneDelegate.swift */; }; + 04C16BBF2A7353CA00746962 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04C16BBE2A7353CA00746962 /* ViewController.swift */; }; + 04C16BC22A7353CA00746962 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 04C16BC02A7353CA00746962 /* Main.storyboard */; }; + 04C16BC42A7353CB00746962 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 04C16BC32A7353CB00746962 /* Assets.xcassets */; }; + 04C16BC72A7353CB00746962 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 04C16BC52A7353CB00746962 /* LaunchScreen.storyboard */; }; + 04C16BD22A7353CB00746962 /* SimpleTransitiveAppTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04C16BD12A7353CB00746962 /* SimpleTransitiveAppTests.swift */; }; + 04C16BDC2A7353CB00746962 /* SimpleTransitiveAppUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04C16BDB2A7353CB00746962 /* SimpleTransitiveAppUITests.swift */; }; + 04C16BDE2A7353CB00746962 /* SimpleTransitiveAppUITestsLaunchTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04C16BDD2A7353CB00746962 /* SimpleTransitiveAppUITestsLaunchTests.swift */; }; + 04C16BF52A735AB000746962 /* SwiftCalc in Frameworks */ = {isa = PBXBuildFile; productRef = 04C16BF42A735AB000746962 /* SwiftCalc */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 04C16BCE2A7353CB00746962 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 04C16BAF2A7353CA00746962 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 04C16BB62A7353CA00746962; + remoteInfo = SimpleTransitiveApp; + }; + 04C16BD82A7353CB00746962 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 04C16BAF2A7353CA00746962 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 04C16BB62A7353CA00746962; + remoteInfo = SimpleTransitiveApp; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 04C16BB72A7353CA00746962 /* SimpleTransitiveApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SimpleTransitiveApp.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 04C16BBA2A7353CA00746962 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 04C16BBC2A7353CA00746962 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; }; + 04C16BBE2A7353CA00746962 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; + 04C16BC12A7353CA00746962 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 04C16BC32A7353CB00746962 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 04C16BC62A7353CB00746962 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + 04C16BC82A7353CB00746962 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 04C16BCD2A7353CB00746962 /* SimpleTransitiveAppTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SimpleTransitiveAppTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 04C16BD12A7353CB00746962 /* SimpleTransitiveAppTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SimpleTransitiveAppTests.swift; sourceTree = ""; }; + 04C16BD72A7353CB00746962 /* SimpleTransitiveAppUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SimpleTransitiveAppUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 04C16BDB2A7353CB00746962 /* SimpleTransitiveAppUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SimpleTransitiveAppUITests.swift; sourceTree = ""; }; + 04C16BDD2A7353CB00746962 /* SimpleTransitiveAppUITestsLaunchTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SimpleTransitiveAppUITestsLaunchTests.swift; sourceTree = ""; }; + 04C16BF02A73588A00746962 /* SwiftCalc */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = SwiftCalc; path = ../SwiftCalc; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 04C16BB42A7353CA00746962 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 04C16BF52A735AB000746962 /* SwiftCalc in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04C16BCA2A7353CB00746962 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04C16BD42A7353CB00746962 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 04C16BAE2A7353CA00746962 = { + isa = PBXGroup; + children = ( + 04C16BEA2A7353FE00746962 /* Packages */, + 04C16BB92A7353CA00746962 /* SimpleTransitiveApp */, + 04C16BD02A7353CB00746962 /* SimpleTransitiveAppTests */, + 04C16BDA2A7353CB00746962 /* SimpleTransitiveAppUITests */, + 04C16BB82A7353CA00746962 /* Products */, + 04C16BF32A735AB000746962 /* Frameworks */, + ); + sourceTree = ""; + }; + 04C16BB82A7353CA00746962 /* Products */ = { + isa = PBXGroup; + children = ( + 04C16BB72A7353CA00746962 /* SimpleTransitiveApp.app */, + 04C16BCD2A7353CB00746962 /* SimpleTransitiveAppTests.xctest */, + 04C16BD72A7353CB00746962 /* SimpleTransitiveAppUITests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 04C16BB92A7353CA00746962 /* SimpleTransitiveApp */ = { + isa = PBXGroup; + children = ( + 04C16BBA2A7353CA00746962 /* AppDelegate.swift */, + 04C16BBC2A7353CA00746962 /* SceneDelegate.swift */, + 04C16BBE2A7353CA00746962 /* ViewController.swift */, + 04C16BC02A7353CA00746962 /* Main.storyboard */, + 04C16BC32A7353CB00746962 /* Assets.xcassets */, + 04C16BC52A7353CB00746962 /* LaunchScreen.storyboard */, + 04C16BC82A7353CB00746962 /* Info.plist */, + ); + path = SimpleTransitiveApp; + sourceTree = ""; + }; + 04C16BD02A7353CB00746962 /* SimpleTransitiveAppTests */ = { + isa = PBXGroup; + children = ( + 04C16BD12A7353CB00746962 /* SimpleTransitiveAppTests.swift */, + ); + path = SimpleTransitiveAppTests; + sourceTree = ""; + }; + 04C16BDA2A7353CB00746962 /* SimpleTransitiveAppUITests */ = { + isa = PBXGroup; + children = ( + 04C16BDB2A7353CB00746962 /* SimpleTransitiveAppUITests.swift */, + 04C16BDD2A7353CB00746962 /* SimpleTransitiveAppUITestsLaunchTests.swift */, + ); + path = SimpleTransitiveAppUITests; + sourceTree = ""; + }; + 04C16BEA2A7353FE00746962 /* Packages */ = { + isa = PBXGroup; + children = ( + 04C16BF02A73588A00746962 /* SwiftCalc */, + ); + name = Packages; + sourceTree = ""; + }; + 04C16BF32A735AB000746962 /* Frameworks */ = { + isa = PBXGroup; + children = ( + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 04C16BB62A7353CA00746962 /* SimpleTransitiveApp */ = { + isa = PBXNativeTarget; + buildConfigurationList = 04C16BE12A7353CB00746962 /* Build configuration list for PBXNativeTarget "SimpleTransitiveApp" */; + buildPhases = ( + 04C16BB32A7353CA00746962 /* Sources */, + 04C16BB42A7353CA00746962 /* Frameworks */, + 04C16BB52A7353CA00746962 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SimpleTransitiveApp; + packageProductDependencies = ( + 04C16BF42A735AB000746962 /* SwiftCalc */, + ); + productName = SimpleTransitiveApp; + productReference = 04C16BB72A7353CA00746962 /* SimpleTransitiveApp.app */; + productType = "com.apple.product-type.application"; + }; + 04C16BCC2A7353CB00746962 /* SimpleTransitiveAppTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 04C16BE42A7353CB00746962 /* Build configuration list for PBXNativeTarget "SimpleTransitiveAppTests" */; + buildPhases = ( + 04C16BC92A7353CB00746962 /* Sources */, + 04C16BCA2A7353CB00746962 /* Frameworks */, + 04C16BCB2A7353CB00746962 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 04C16BCF2A7353CB00746962 /* PBXTargetDependency */, + ); + name = SimpleTransitiveAppTests; + productName = SimpleTransitiveAppTests; + productReference = 04C16BCD2A7353CB00746962 /* SimpleTransitiveAppTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 04C16BD62A7353CB00746962 /* SimpleTransitiveAppUITests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 04C16BE72A7353CB00746962 /* Build configuration list for PBXNativeTarget "SimpleTransitiveAppUITests" */; + buildPhases = ( + 04C16BD32A7353CB00746962 /* Sources */, + 04C16BD42A7353CB00746962 /* Frameworks */, + 04C16BD52A7353CB00746962 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 04C16BD92A7353CB00746962 /* PBXTargetDependency */, + ); + name = SimpleTransitiveAppUITests; + productName = SimpleTransitiveAppUITests; + productReference = 04C16BD72A7353CB00746962 /* SimpleTransitiveAppUITests.xctest */; + productType = "com.apple.product-type.bundle.ui-testing"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 04C16BAF2A7353CA00746962 /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastSwiftUpdateCheck = 1430; + LastUpgradeCheck = 1430; + TargetAttributes = { + 04C16BB62A7353CA00746962 = { + CreatedOnToolsVersion = 14.3.1; + }; + 04C16BCC2A7353CB00746962 = { + CreatedOnToolsVersion = 14.3.1; + TestTargetID = 04C16BB62A7353CA00746962; + }; + 04C16BD62A7353CB00746962 = { + CreatedOnToolsVersion = 14.3.1; + TestTargetID = 04C16BB62A7353CA00746962; + }; + }; + }; + buildConfigurationList = 04C16BB22A7353CA00746962 /* Build configuration list for PBXProject "SimpleTransitiveApp" */; + compatibilityVersion = "Xcode 14.0"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 04C16BAE2A7353CA00746962; + productRefGroup = 04C16BB82A7353CA00746962 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 04C16BB62A7353CA00746962 /* SimpleTransitiveApp */, + 04C16BCC2A7353CB00746962 /* SimpleTransitiveAppTests */, + 04C16BD62A7353CB00746962 /* SimpleTransitiveAppUITests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 04C16BB52A7353CA00746962 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04C16BC72A7353CB00746962 /* LaunchScreen.storyboard in Resources */, + 04C16BC42A7353CB00746962 /* Assets.xcassets in Resources */, + 04C16BC22A7353CA00746962 /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04C16BCB2A7353CB00746962 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04C16BD52A7353CB00746962 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 04C16BB32A7353CA00746962 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04C16BBF2A7353CA00746962 /* ViewController.swift in Sources */, + 04C16BBB2A7353CA00746962 /* AppDelegate.swift in Sources */, + 04C16BBD2A7353CA00746962 /* SceneDelegate.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04C16BC92A7353CB00746962 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04C16BD22A7353CB00746962 /* SimpleTransitiveAppTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04C16BD32A7353CB00746962 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04C16BDC2A7353CB00746962 /* SimpleTransitiveAppUITests.swift in Sources */, + 04C16BDE2A7353CB00746962 /* SimpleTransitiveAppUITestsLaunchTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 04C16BCF2A7353CB00746962 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 04C16BB62A7353CA00746962 /* SimpleTransitiveApp */; + targetProxy = 04C16BCE2A7353CB00746962 /* PBXContainerItemProxy */; + }; + 04C16BD92A7353CB00746962 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 04C16BB62A7353CA00746962 /* SimpleTransitiveApp */; + targetProxy = 04C16BD82A7353CB00746962 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 04C16BC02A7353CA00746962 /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 04C16BC12A7353CA00746962 /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + 04C16BC52A7353CB00746962 /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 04C16BC62A7353CB00746962 /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 04C16BDF2A7353CB00746962 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 04C16BE02A7353CB00746962 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 04C16BE22A7353CB00746962 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = SimpleTransitiveApp/Info.plist; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; + INFOPLIST_KEY_UIMainStoryboardFile = Main; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.SimpleTransitiveApp; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 04C16BE32A7353CB00746962 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = SimpleTransitiveApp/Info.plist; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; + INFOPLIST_KEY_UIMainStoryboardFile = Main; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.SimpleTransitiveApp; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + 04C16BE52A7353CB00746962 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.SimpleTransitiveAppTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SimpleTransitiveApp.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/SimpleTransitiveApp"; + }; + name = Debug; + }; + 04C16BE62A7353CB00746962 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.SimpleTransitiveAppTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SimpleTransitiveApp.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/SimpleTransitiveApp"; + }; + name = Release; + }; + 04C16BE82A7353CB00746962 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.SimpleTransitiveAppUITests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_TARGET_NAME = SimpleTransitiveApp; + }; + name = Debug; + }; + 04C16BE92A7353CB00746962 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.SimpleTransitiveAppUITests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_TARGET_NAME = SimpleTransitiveApp; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 04C16BB22A7353CA00746962 /* Build configuration list for PBXProject "SimpleTransitiveApp" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04C16BDF2A7353CB00746962 /* Debug */, + 04C16BE02A7353CB00746962 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 04C16BE12A7353CB00746962 /* Build configuration list for PBXNativeTarget "SimpleTransitiveApp" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04C16BE22A7353CB00746962 /* Debug */, + 04C16BE32A7353CB00746962 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 04C16BE42A7353CB00746962 /* Build configuration list for PBXNativeTarget "SimpleTransitiveAppTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04C16BE52A7353CB00746962 /* Debug */, + 04C16BE62A7353CB00746962 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 04C16BE72A7353CB00746962 /* Build configuration list for PBXNativeTarget "SimpleTransitiveAppUITests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04C16BE82A7353CB00746962 /* Debug */, + 04C16BE92A7353CB00746962 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + +/* Begin XCSwiftPackageProductDependency section */ + 04C16BF42A735AB000746962 /* SwiftCalc */ = { + isa = XCSwiftPackageProductDependency; + productName = SwiftCalc; + }; +/* End XCSwiftPackageProductDependency section */ + }; + rootObject = 04C16BAF2A7353CA00746962 /* Project object */; +} diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/AppDelegate.swift b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/AppDelegate.swift new file mode 100644 index 0000000..8d57307 --- /dev/null +++ b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/AppDelegate.swift @@ -0,0 +1,36 @@ +// +// AppDelegate.swift +// SimpleTransitiveApp +// +// Created by Jared Carlson on 7/27/23. +// + +import UIKit + +@main +class AppDelegate: UIResponder, UIApplicationDelegate { + + + + func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { + // Override point for customization after application launch. + return true + } + + // MARK: UISceneSession Lifecycle + + func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration { + // Called when a new scene session is being created. + // Use this method to select a configuration to create the new scene with. + return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role) + } + + func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set) { + // Called when the user discards a scene session. + // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions. + // Use this method to release any resources that were specific to the discarded scenes, as they will not return. + } + + +} + diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/AccentColor.colorset/Contents.json b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 0000000..eb87897 --- /dev/null +++ b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,11 @@ +{ + "colors" : [ + { + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/AppIcon.appiconset/Contents.json b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..13613e3 --- /dev/null +++ b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,13 @@ +{ + "images" : [ + { + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/Contents.json b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Base.lproj/LaunchScreen.storyboard b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000..865e932 --- /dev/null +++ b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Base.lproj/Main.storyboard b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Base.lproj/Main.storyboard new file mode 100644 index 0000000..25a7638 --- /dev/null +++ b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Base.lproj/Main.storyboard @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Info.plist b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Info.plist new file mode 100644 index 0000000..dd3c9af --- /dev/null +++ b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Info.plist @@ -0,0 +1,25 @@ + + + + + UIApplicationSceneManifest + + UIApplicationSupportsMultipleScenes + + UISceneConfigurations + + UIWindowSceneSessionRoleApplication + + + UISceneConfigurationName + Default Configuration + UISceneDelegateClassName + $(PRODUCT_MODULE_NAME).SceneDelegate + UISceneStoryboardFile + Main + + + + + + diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/SceneDelegate.swift b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/SceneDelegate.swift new file mode 100644 index 0000000..aa3db5e --- /dev/null +++ b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/SceneDelegate.swift @@ -0,0 +1,52 @@ +// +// SceneDelegate.swift +// SimpleTransitiveApp +// +// Created by Jared Carlson on 7/27/23. +// + +import UIKit + +class SceneDelegate: UIResponder, UIWindowSceneDelegate { + + var window: UIWindow? + + + func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { + // Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`. + // If using a storyboard, the `window` property will automatically be initialized and attached to the scene. + // This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead). + guard let _ = (scene as? UIWindowScene) else { return } + } + + func sceneDidDisconnect(_ scene: UIScene) { + // Called as the scene is being released by the system. + // This occurs shortly after the scene enters the background, or when its session is discarded. + // Release any resources associated with this scene that can be re-created the next time the scene connects. + // The scene may re-connect later, as its session was not necessarily discarded (see `application:didDiscardSceneSessions` instead). + } + + func sceneDidBecomeActive(_ scene: UIScene) { + // Called when the scene has moved from an inactive state to an active state. + // Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive. + } + + func sceneWillResignActive(_ scene: UIScene) { + // Called when the scene will move from an active state to an inactive state. + // This may occur due to temporary interruptions (ex. an incoming phone call). + } + + func sceneWillEnterForeground(_ scene: UIScene) { + // Called as the scene transitions from the background to the foreground. + // Use this method to undo the changes made on entering the background. + } + + func sceneDidEnterBackground(_ scene: UIScene) { + // Called as the scene transitions from the foreground to the background. + // Use this method to save data, release shared resources, and store enough scene-specific state information + // to restore the scene back to its current state. + } + + +} + diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/ViewController.swift b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/ViewController.swift new file mode 100644 index 0000000..88b0169 --- /dev/null +++ b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/ViewController.swift @@ -0,0 +1,23 @@ +// +// ViewController.swift +// SimpleTransitiveApp +// +// Created by Jared Carlson on 7/27/23. +// + +import UIKit +import SwiftCalc + +class ViewController: UIViewController { + + override func viewDidLoad() { + super.viewDidLoad() + // Do any additional setup after loading the view. + + let ninth_fib = Fibonacci(n: 9) + print("The ninth fibonacci number is \(ninth_fib)") + } + + +} + diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppTests/SimpleTransitiveAppTests.swift b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppTests/SimpleTransitiveAppTests.swift new file mode 100644 index 0000000..5db5848 --- /dev/null +++ b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppTests/SimpleTransitiveAppTests.swift @@ -0,0 +1,36 @@ +// +// SimpleTransitiveAppTests.swift +// SimpleTransitiveAppTests +// +// Created by Jared Carlson on 7/27/23. +// + +import XCTest +@testable import SimpleTransitiveApp + +final class SimpleTransitiveAppTests: XCTestCase { + + override func setUpWithError() throws { + // Put setup code here. This method is called before the invocation of each test method in the class. + } + + override func tearDownWithError() throws { + // Put teardown code here. This method is called after the invocation of each test method in the class. + } + + func testExample() throws { + // This is an example of a functional test case. + // Use XCTAssert and related functions to verify your tests produce the correct results. + // Any test you write for XCTest can be annotated as throws and async. + // Mark your test throws to produce an unexpected failure when your test encounters an uncaught error. + // Mark your test async to allow awaiting for asynchronous code to complete. Check the results with assertions afterwards. + } + + func testPerformanceExample() throws { + // This is an example of a performance test case. + self.measure { + // Put the code you want to measure the time of here. + } + } + +} diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppUITests/SimpleTransitiveAppUITests.swift b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppUITests/SimpleTransitiveAppUITests.swift new file mode 100644 index 0000000..b06e7a0 --- /dev/null +++ b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppUITests/SimpleTransitiveAppUITests.swift @@ -0,0 +1,41 @@ +// +// SimpleTransitiveAppUITests.swift +// SimpleTransitiveAppUITests +// +// Created by Jared Carlson on 7/27/23. +// + +import XCTest + +final class SimpleTransitiveAppUITests: XCTestCase { + + override func setUpWithError() throws { + // Put setup code here. This method is called before the invocation of each test method in the class. + + // In UI tests it is usually best to stop immediately when a failure occurs. + continueAfterFailure = false + + // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this. + } + + override func tearDownWithError() throws { + // Put teardown code here. This method is called after the invocation of each test method in the class. + } + + func testExample() throws { + // UI tests must launch the application that they test. + let app = XCUIApplication() + app.launch() + + // Use XCTAssert and related functions to verify your tests produce the correct results. + } + + func testLaunchPerformance() throws { + if #available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 7.0, *) { + // This measures how long it takes to launch your application. + measure(metrics: [XCTApplicationLaunchMetric()]) { + XCUIApplication().launch() + } + } + } +} diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppUITests/SimpleTransitiveAppUITestsLaunchTests.swift b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppUITests/SimpleTransitiveAppUITestsLaunchTests.swift new file mode 100644 index 0000000..06e2a7c --- /dev/null +++ b/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppUITests/SimpleTransitiveAppUITestsLaunchTests.swift @@ -0,0 +1,32 @@ +// +// SimpleTransitiveAppUITestsLaunchTests.swift +// SimpleTransitiveAppUITests +// +// Created by Jared Carlson on 7/27/23. +// + +import XCTest + +final class SimpleTransitiveAppUITestsLaunchTests: XCTestCase { + + override class var runsForEachTargetApplicationUIConfiguration: Bool { + true + } + + override func setUpWithError() throws { + continueAfterFailure = false + } + + func testLaunch() throws { + let app = XCUIApplication() + app.launch() + + // Insert steps here to perform after app launch but before taking a screenshot, + // such as logging into a test account or navigating somewhere in the app + + let attachment = XCTAttachment(screenshot: app.screenshot()) + attachment.name = "Launch Screen" + attachment.lifetime = .keepAlways + add(attachment) + } +} diff --git a/Tests/transitive-project-and-components/SwiftCalc/.gitignore b/Tests/transitive-project-and-components/SwiftCalc/.gitignore new file mode 100644 index 0000000..3b29812 --- /dev/null +++ b/Tests/transitive-project-and-components/SwiftCalc/.gitignore @@ -0,0 +1,9 @@ +.DS_Store +/.build +/Packages +/*.xcodeproj +xcuserdata/ +DerivedData/ +.swiftpm/config/registries.json +.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata +.netrc diff --git a/Tests/transitive-project-and-components/SwiftCalc/Package.swift b/Tests/transitive-project-and-components/SwiftCalc/Package.swift new file mode 100644 index 0000000..75803f3 --- /dev/null +++ b/Tests/transitive-project-and-components/SwiftCalc/Package.swift @@ -0,0 +1,28 @@ +// swift-tools-version: 5.8 +// The swift-tools-version declares the minimum version of Swift required to build this package. + +import PackageDescription + +let package = Package( + name: "SwiftCalc", + products: [ + // Products define the executables and libraries a package produces, making them visible to other packages. + .library( + name: "SwiftCalc", + targets: ["SwiftCalc"]), + ], + dependencies: [ + .package(path: "../SwiftMath") + ], + targets: [ + // Targets are the basic building blocks of a package, defining a module or a test suite. + // Targets can depend on other targets in this package and products from dependencies. + .target( + name: "SwiftCalc", + dependencies: ["SwiftMath"] + ), + .testTarget( + name: "SwiftCalcTests", + dependencies: ["SwiftCalc"]), + ] +) diff --git a/Tests/transitive-project-and-components/SwiftCalc/Sources/SwiftCalc/SwiftCalc.swift b/Tests/transitive-project-and-components/SwiftCalc/Sources/SwiftCalc/SwiftCalc.swift new file mode 100644 index 0000000..c24c19c --- /dev/null +++ b/Tests/transitive-project-and-components/SwiftCalc/Sources/SwiftCalc/SwiftCalc.swift @@ -0,0 +1,16 @@ +// The Swift Programming Language +// https://docs.swift.org/swift-book + +import SwiftMath + +public func Fibonacci( n: Int ) -> Int { + var a = 0 + var b = 1 + var c = 0 + for _ in 2...n { + c = add(lhs: a, rhs: b) + a = b + b = c + } + return b +} \ No newline at end of file diff --git a/Tests/transitive-project-and-components/SwiftCalc/Tests/SwiftCalcTests/SwiftCalcTests.swift b/Tests/transitive-project-and-components/SwiftCalc/Tests/SwiftCalcTests/SwiftCalcTests.swift new file mode 100644 index 0000000..5aabdbb --- /dev/null +++ b/Tests/transitive-project-and-components/SwiftCalc/Tests/SwiftCalcTests/SwiftCalcTests.swift @@ -0,0 +1,12 @@ +import XCTest +@testable import SwiftCalc + +final class SwiftCalcTests: XCTestCase { + func testExample() throws { + // XCTest Documenation + // https://developer.apple.com/documentation/xctest + + // Defining Test Cases and Test Methods + // https://developer.apple.com/documentation/xctest/defining_test_cases_and_test_methods + } +} diff --git a/Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculation.xcodeproj/project.pbxproj b/Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculation.xcodeproj/project.pbxproj new file mode 100644 index 0000000..12ce30f --- /dev/null +++ b/Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculation.xcodeproj/project.pbxproj @@ -0,0 +1,503 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 56; + objects = { + +/* Begin PBXBuildFile section */ + 0495B6442A74C03600327A4E /* SwiftCalculation.docc in Sources */ = {isa = PBXBuildFile; fileRef = 0495B6432A74C03600327A4E /* SwiftCalculation.docc */; }; + 0495B64A2A74C03600327A4E /* SwiftCalculation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0495B63F2A74C03600327A4E /* SwiftCalculation.framework */; }; + 0495B64F2A74C03600327A4E /* SwiftCalculationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0495B64E2A74C03600327A4E /* SwiftCalculationTests.swift */; }; + 0495B6502A74C03600327A4E /* SwiftCalculation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0495B6422A74C03600327A4E /* SwiftCalculation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0495B6632A74C08500327A4E /* Calculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0495B6622A74C08500327A4E /* Calculation.swift */; }; + 0495B6682A74C0F600327A4E /* SwiftMath in Frameworks */ = {isa = PBXBuildFile; productRef = 0495B6672A74C0F600327A4E /* SwiftMath */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 0495B64B2A74C03600327A4E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0495B6362A74C03600327A4E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0495B63E2A74C03600327A4E; + remoteInfo = SwiftCalculation; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 0495B63F2A74C03600327A4E /* SwiftCalculation.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SwiftCalculation.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 0495B6422A74C03600327A4E /* SwiftCalculation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SwiftCalculation.h; sourceTree = ""; }; + 0495B6432A74C03600327A4E /* SwiftCalculation.docc */ = {isa = PBXFileReference; lastKnownFileType = folder.documentationcatalog; path = SwiftCalculation.docc; sourceTree = ""; }; + 0495B6492A74C03600327A4E /* SwiftCalculationTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SwiftCalculationTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 0495B64E2A74C03600327A4E /* SwiftCalculationTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftCalculationTests.swift; sourceTree = ""; }; + 0495B6622A74C08500327A4E /* Calculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Calculation.swift; sourceTree = ""; }; + 0495B6652A74C0CA00327A4E /* SwiftMath */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = SwiftMath; path = ../SwiftMath; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 0495B63C2A74C03600327A4E /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 0495B6682A74C0F600327A4E /* SwiftMath in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0495B6462A74C03600327A4E /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 0495B64A2A74C03600327A4E /* SwiftCalculation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 0495B6352A74C03600327A4E = { + isa = PBXGroup; + children = ( + 0495B6642A74C0CA00327A4E /* Packages */, + 0495B6412A74C03600327A4E /* SwiftCalculation */, + 0495B64D2A74C03600327A4E /* SwiftCalculationTests */, + 0495B6402A74C03600327A4E /* Products */, + 0495B6662A74C0F600327A4E /* Frameworks */, + ); + sourceTree = ""; + }; + 0495B6402A74C03600327A4E /* Products */ = { + isa = PBXGroup; + children = ( + 0495B63F2A74C03600327A4E /* SwiftCalculation.framework */, + 0495B6492A74C03600327A4E /* SwiftCalculationTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 0495B6412A74C03600327A4E /* SwiftCalculation */ = { + isa = PBXGroup; + children = ( + 0495B6422A74C03600327A4E /* SwiftCalculation.h */, + 0495B6622A74C08500327A4E /* Calculation.swift */, + 0495B6432A74C03600327A4E /* SwiftCalculation.docc */, + ); + path = SwiftCalculation; + sourceTree = ""; + }; + 0495B64D2A74C03600327A4E /* SwiftCalculationTests */ = { + isa = PBXGroup; + children = ( + 0495B64E2A74C03600327A4E /* SwiftCalculationTests.swift */, + ); + path = SwiftCalculationTests; + sourceTree = ""; + }; + 0495B6642A74C0CA00327A4E /* Packages */ = { + isa = PBXGroup; + children = ( + 0495B6652A74C0CA00327A4E /* SwiftMath */, + ); + name = Packages; + sourceTree = ""; + }; + 0495B6662A74C0F600327A4E /* Frameworks */ = { + isa = PBXGroup; + children = ( + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 0495B63A2A74C03600327A4E /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 0495B6502A74C03600327A4E /* SwiftCalculation.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 0495B63E2A74C03600327A4E /* SwiftCalculation */ = { + isa = PBXNativeTarget; + buildConfigurationList = 0495B6532A74C03600327A4E /* Build configuration list for PBXNativeTarget "SwiftCalculation" */; + buildPhases = ( + 0495B63A2A74C03600327A4E /* Headers */, + 0495B63B2A74C03600327A4E /* Sources */, + 0495B63C2A74C03600327A4E /* Frameworks */, + 0495B63D2A74C03600327A4E /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SwiftCalculation; + packageProductDependencies = ( + 0495B6672A74C0F600327A4E /* SwiftMath */, + ); + productName = SwiftCalculation; + productReference = 0495B63F2A74C03600327A4E /* SwiftCalculation.framework */; + productType = "com.apple.product-type.framework"; + }; + 0495B6482A74C03600327A4E /* SwiftCalculationTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 0495B6562A74C03600327A4E /* Build configuration list for PBXNativeTarget "SwiftCalculationTests" */; + buildPhases = ( + 0495B6452A74C03600327A4E /* Sources */, + 0495B6462A74C03600327A4E /* Frameworks */, + 0495B6472A74C03600327A4E /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 0495B64C2A74C03600327A4E /* PBXTargetDependency */, + ); + name = SwiftCalculationTests; + productName = SwiftCalculationTests; + productReference = 0495B6492A74C03600327A4E /* SwiftCalculationTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 0495B6362A74C03600327A4E /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastSwiftUpdateCheck = 1430; + LastUpgradeCheck = 1430; + TargetAttributes = { + 0495B63E2A74C03600327A4E = { + CreatedOnToolsVersion = 14.3.1; + }; + 0495B6482A74C03600327A4E = { + CreatedOnToolsVersion = 14.3.1; + }; + }; + }; + buildConfigurationList = 0495B6392A74C03600327A4E /* Build configuration list for PBXProject "SwiftCalculation" */; + compatibilityVersion = "Xcode 14.0"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 0495B6352A74C03600327A4E; + productRefGroup = 0495B6402A74C03600327A4E /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 0495B63E2A74C03600327A4E /* SwiftCalculation */, + 0495B6482A74C03600327A4E /* SwiftCalculationTests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 0495B63D2A74C03600327A4E /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0495B6472A74C03600327A4E /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 0495B63B2A74C03600327A4E /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0495B6442A74C03600327A4E /* SwiftCalculation.docc in Sources */, + 0495B6632A74C08500327A4E /* Calculation.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0495B6452A74C03600327A4E /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0495B64F2A74C03600327A4E /* SwiftCalculationTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 0495B64C2A74C03600327A4E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 0495B63E2A74C03600327A4E /* SwiftCalculation */; + targetProxy = 0495B64B2A74C03600327A4E /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 0495B6512A74C03600327A4E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 0495B6522A74C03600327A4E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 0495B6542A74C03600327A4E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_NSHumanReadableCopyright = ""; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; + MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++20"; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.SwiftCalculation; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 0495B6552A74C03600327A4E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_NSHumanReadableCopyright = ""; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; + MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++20"; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.SwiftCalculation; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + 0495B6572A74C03600327A4E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.SwiftCalculationTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 0495B6582A74C03600327A4E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.SwiftCalculationTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 0495B6392A74C03600327A4E /* Build configuration list for PBXProject "SwiftCalculation" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0495B6512A74C03600327A4E /* Debug */, + 0495B6522A74C03600327A4E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 0495B6532A74C03600327A4E /* Build configuration list for PBXNativeTarget "SwiftCalculation" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0495B6542A74C03600327A4E /* Debug */, + 0495B6552A74C03600327A4E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 0495B6562A74C03600327A4E /* Build configuration list for PBXNativeTarget "SwiftCalculationTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0495B6572A74C03600327A4E /* Debug */, + 0495B6582A74C03600327A4E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + +/* Begin XCSwiftPackageProductDependency section */ + 0495B6672A74C0F600327A4E /* SwiftMath */ = { + isa = XCSwiftPackageProductDependency; + productName = SwiftMath; + }; +/* End XCSwiftPackageProductDependency section */ + }; + rootObject = 0495B6362A74C03600327A4E /* Project object */; +} diff --git a/Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculation/Calculation.swift b/Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculation/Calculation.swift new file mode 100644 index 0000000..3dc6ccd --- /dev/null +++ b/Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculation/Calculation.swift @@ -0,0 +1,21 @@ +// +// Calculation.swift +// SwiftCalculation +// +// Created by Jared Carlson on 7/28/23. +// + +import Foundation +import SwiftMath + +public func Fibonacci( n: Int ) -> Int { + var a = 0 + var b = 1 + var c = 0 + for _ in 2...n { + c = add(lhs: a, rhs: b) + a = b + b = c + } + return b +} diff --git a/Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculation/SwiftCalculation.docc/SwiftCalculation.md b/Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculation/SwiftCalculation.docc/SwiftCalculation.md new file mode 100755 index 0000000..c33ba89 --- /dev/null +++ b/Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculation/SwiftCalculation.docc/SwiftCalculation.md @@ -0,0 +1,13 @@ +# ``SwiftCalculation`` + +Summary + +## Overview + +Text + +## Topics + +### Group + +- ``Symbol`` \ No newline at end of file diff --git a/Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculation/SwiftCalculation.h b/Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculation/SwiftCalculation.h new file mode 100644 index 0000000..a155502 --- /dev/null +++ b/Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculation/SwiftCalculation.h @@ -0,0 +1,18 @@ +// +// SwiftCalculation.h +// SwiftCalculation +// +// Created by Jared Carlson on 7/28/23. +// + +#import + +//! Project version number for SwiftCalculation. +FOUNDATION_EXPORT double SwiftCalculationVersionNumber; + +//! Project version string for SwiftCalculation. +FOUNDATION_EXPORT const unsigned char SwiftCalculationVersionString[]; + +// In this header, you should import all the public headers of your framework using statements like #import + + diff --git a/Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculationTests/SwiftCalculationTests.swift b/Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculationTests/SwiftCalculationTests.swift new file mode 100644 index 0000000..1d23cb6 --- /dev/null +++ b/Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculationTests/SwiftCalculationTests.swift @@ -0,0 +1,36 @@ +// +// SwiftCalculationTests.swift +// SwiftCalculationTests +// +// Created by Jared Carlson on 7/28/23. +// + +import XCTest +@testable import SwiftCalculation + +final class SwiftCalculationTests: XCTestCase { + + override func setUpWithError() throws { + // Put setup code here. This method is called before the invocation of each test method in the class. + } + + override func tearDownWithError() throws { + // Put teardown code here. This method is called after the invocation of each test method in the class. + } + + func testExample() throws { + // This is an example of a functional test case. + // Use XCTAssert and related functions to verify your tests produce the correct results. + // Any test you write for XCTest can be annotated as throws and async. + // Mark your test throws to produce an unexpected failure when your test encounters an uncaught error. + // Mark your test async to allow awaiting for asynchronous code to complete. Check the results with assertions afterwards. + } + + func testPerformanceExample() throws { + // This is an example of a performance test case. + self.measure { + // Put the code you want to measure the time of here. + } + } + +} diff --git a/Tests/transitive-project-and-components/SwiftMath/.gitignore b/Tests/transitive-project-and-components/SwiftMath/.gitignore new file mode 100644 index 0000000..3b29812 --- /dev/null +++ b/Tests/transitive-project-and-components/SwiftMath/.gitignore @@ -0,0 +1,9 @@ +.DS_Store +/.build +/Packages +/*.xcodeproj +xcuserdata/ +DerivedData/ +.swiftpm/config/registries.json +.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata +.netrc diff --git a/Tests/transitive-project-and-components/SwiftMath/Package.swift b/Tests/transitive-project-and-components/SwiftMath/Package.swift new file mode 100644 index 0000000..44b3a98 --- /dev/null +++ b/Tests/transitive-project-and-components/SwiftMath/Package.swift @@ -0,0 +1,23 @@ +// swift-tools-version: 5.8 +// The swift-tools-version declares the minimum version of Swift required to build this package. + +import PackageDescription + +let package = Package( + name: "SwiftMath", + products: [ + // Products define the executables and libraries a package produces, making them visible to other packages. + .library( + name: "SwiftMath", + targets: ["SwiftMath"]), + ], + targets: [ + // Targets are the basic building blocks of a package, defining a module or a test suite. + // Targets can depend on other targets in this package and products from dependencies. + .target( + name: "SwiftMath"), + .testTarget( + name: "SwiftMathTests", + dependencies: ["SwiftMath"]), + ] +) diff --git a/Tests/transitive-project-and-components/SwiftMath/Sources/SwiftMath/SwiftMath.swift b/Tests/transitive-project-and-components/SwiftMath/Sources/SwiftMath/SwiftMath.swift new file mode 100644 index 0000000..1d16913 --- /dev/null +++ b/Tests/transitive-project-and-components/SwiftMath/Sources/SwiftMath/SwiftMath.swift @@ -0,0 +1,26 @@ +// The Swift Programming Language +// https://docs.swift.org/swift-book + +enum OperationError:Error { + case DivideByZero +} + +public func mult(lhs:Int, rhs:Int) -> Int { + return lhs * rhs +} + +public func div(lhs: Int, rhs: Int) throws -> Int { + guard rhs != 0 else { + throw OperationError.DivideByZero + } + + return lhs / rhs +} + +public func add( lhs: Int, rhs: Int) -> Int { + return lhs + rhs +} + +public func sub( lhs: Int, rhs: Int) -> Int { + return lhs - rhs +} diff --git a/Tests/transitive-project-and-components/SwiftMath/Tests/SwiftMathTests/SwiftMathTests.swift b/Tests/transitive-project-and-components/SwiftMath/Tests/SwiftMathTests/SwiftMathTests.swift new file mode 100644 index 0000000..0eac419 --- /dev/null +++ b/Tests/transitive-project-and-components/SwiftMath/Tests/SwiftMathTests/SwiftMathTests.swift @@ -0,0 +1,12 @@ +import XCTest +@testable import SwiftMath + +final class SwiftMathTests: XCTestCase { + func testExample() throws { + // XCTest Documenation + // https://developer.apple.com/documentation/xctest + + // Defining Test Cases and Test Methods + // https://developer.apple.com/documentation/xctest/defining_test_cases_and_test_methods + } +} diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPM.xcworkspace/contents.xcworkspacedata b/Tests/transitive-project-and-components/TransitivePBXtoSPM.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..314fada --- /dev/null +++ b/Tests/transitive-project-and-components/TransitivePBXtoSPM.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPM.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/Tests/transitive-project-and-components/TransitivePBXtoSPM.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/Tests/transitive-project-and-components/TransitivePBXtoSPM.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.pbxproj b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.pbxproj new file mode 100644 index 0000000..4e54375 --- /dev/null +++ b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.pbxproj @@ -0,0 +1,607 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 56; + objects = { + +/* Begin PBXBuildFile section */ + 04065CBF2A7454E300472463 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04065CBE2A7454E300472463 /* AppDelegate.swift */; }; + 04065CC12A7454E300472463 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04065CC02A7454E300472463 /* SceneDelegate.swift */; }; + 04065CC32A7454E300472463 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04065CC22A7454E300472463 /* ViewController.swift */; }; + 04065CC62A7454E300472463 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 04065CC42A7454E300472463 /* Main.storyboard */; }; + 04065CC82A7454E400472463 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 04065CC72A7454E400472463 /* Assets.xcassets */; }; + 04065CCB2A7454E400472463 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 04065CC92A7454E400472463 /* LaunchScreen.storyboard */; }; + 04065CD62A7454E400472463 /* TransitivePBXtoSPMAppTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04065CD52A7454E400472463 /* TransitivePBXtoSPMAppTests.swift */; }; + 04065CE02A7454E400472463 /* TransitivePBXtoSPMAppUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04065CDF2A7454E400472463 /* TransitivePBXtoSPMAppUITests.swift */; }; + 04065CE22A7454E400472463 /* TransitivePBXtoSPMAppUITestsLaunchTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04065CE12A7454E400472463 /* TransitivePBXtoSPMAppUITestsLaunchTests.swift */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 04065CD22A7454E400472463 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 04065CB32A7454E300472463 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 04065CBA2A7454E300472463; + remoteInfo = TransitivePBXtoSPMApp; + }; + 04065CDC2A7454E400472463 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 04065CB32A7454E300472463 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 04065CBA2A7454E300472463; + remoteInfo = TransitivePBXtoSPMApp; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 04065CBB2A7454E300472463 /* TransitivePBXtoSPMApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TransitivePBXtoSPMApp.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 04065CBE2A7454E300472463 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 04065CC02A7454E300472463 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; }; + 04065CC22A7454E300472463 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; + 04065CC52A7454E300472463 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 04065CC72A7454E400472463 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 04065CCA2A7454E400472463 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + 04065CCC2A7454E400472463 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 04065CD12A7454E400472463 /* TransitivePBXtoSPMAppTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TransitivePBXtoSPMAppTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 04065CD52A7454E400472463 /* TransitivePBXtoSPMAppTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TransitivePBXtoSPMAppTests.swift; sourceTree = ""; }; + 04065CDB2A7454E400472463 /* TransitivePBXtoSPMAppUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TransitivePBXtoSPMAppUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 04065CDF2A7454E400472463 /* TransitivePBXtoSPMAppUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TransitivePBXtoSPMAppUITests.swift; sourceTree = ""; }; + 04065CE12A7454E400472463 /* TransitivePBXtoSPMAppUITestsLaunchTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TransitivePBXtoSPMAppUITestsLaunchTests.swift; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 04065CB82A7454E300472463 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04065CCE2A7454E400472463 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04065CD82A7454E400472463 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 04065CB22A7454E300472463 = { + isa = PBXGroup; + children = ( + 04065CBD2A7454E300472463 /* TransitivePBXtoSPMApp */, + 04065CD42A7454E400472463 /* TransitivePBXtoSPMAppTests */, + 04065CDE2A7454E400472463 /* TransitivePBXtoSPMAppUITests */, + 04065CBC2A7454E300472463 /* Products */, + ); + sourceTree = ""; + }; + 04065CBC2A7454E300472463 /* Products */ = { + isa = PBXGroup; + children = ( + 04065CBB2A7454E300472463 /* TransitivePBXtoSPMApp.app */, + 04065CD12A7454E400472463 /* TransitivePBXtoSPMAppTests.xctest */, + 04065CDB2A7454E400472463 /* TransitivePBXtoSPMAppUITests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 04065CBD2A7454E300472463 /* TransitivePBXtoSPMApp */ = { + isa = PBXGroup; + children = ( + 04065CBE2A7454E300472463 /* AppDelegate.swift */, + 04065CC02A7454E300472463 /* SceneDelegate.swift */, + 04065CC22A7454E300472463 /* ViewController.swift */, + 04065CC42A7454E300472463 /* Main.storyboard */, + 04065CC72A7454E400472463 /* Assets.xcassets */, + 04065CC92A7454E400472463 /* LaunchScreen.storyboard */, + 04065CCC2A7454E400472463 /* Info.plist */, + ); + path = TransitivePBXtoSPMApp; + sourceTree = ""; + }; + 04065CD42A7454E400472463 /* TransitivePBXtoSPMAppTests */ = { + isa = PBXGroup; + children = ( + 04065CD52A7454E400472463 /* TransitivePBXtoSPMAppTests.swift */, + ); + path = TransitivePBXtoSPMAppTests; + sourceTree = ""; + }; + 04065CDE2A7454E400472463 /* TransitivePBXtoSPMAppUITests */ = { + isa = PBXGroup; + children = ( + 04065CDF2A7454E400472463 /* TransitivePBXtoSPMAppUITests.swift */, + 04065CE12A7454E400472463 /* TransitivePBXtoSPMAppUITestsLaunchTests.swift */, + ); + path = TransitivePBXtoSPMAppUITests; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 04065CBA2A7454E300472463 /* TransitivePBXtoSPMApp */ = { + isa = PBXNativeTarget; + buildConfigurationList = 04065CE52A7454E400472463 /* Build configuration list for PBXNativeTarget "TransitivePBXtoSPMApp" */; + buildPhases = ( + 04065CB72A7454E300472463 /* Sources */, + 04065CB82A7454E300472463 /* Frameworks */, + 04065CB92A7454E300472463 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = TransitivePBXtoSPMApp; + productName = TransitivePBXtoSPMApp; + productReference = 04065CBB2A7454E300472463 /* TransitivePBXtoSPMApp.app */; + productType = "com.apple.product-type.application"; + }; + 04065CD02A7454E400472463 /* TransitivePBXtoSPMAppTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 04065CE82A7454E400472463 /* Build configuration list for PBXNativeTarget "TransitivePBXtoSPMAppTests" */; + buildPhases = ( + 04065CCD2A7454E400472463 /* Sources */, + 04065CCE2A7454E400472463 /* Frameworks */, + 04065CCF2A7454E400472463 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 04065CD32A7454E400472463 /* PBXTargetDependency */, + ); + name = TransitivePBXtoSPMAppTests; + productName = TransitivePBXtoSPMAppTests; + productReference = 04065CD12A7454E400472463 /* TransitivePBXtoSPMAppTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 04065CDA2A7454E400472463 /* TransitivePBXtoSPMAppUITests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 04065CEB2A7454E400472463 /* Build configuration list for PBXNativeTarget "TransitivePBXtoSPMAppUITests" */; + buildPhases = ( + 04065CD72A7454E400472463 /* Sources */, + 04065CD82A7454E400472463 /* Frameworks */, + 04065CD92A7454E400472463 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 04065CDD2A7454E400472463 /* PBXTargetDependency */, + ); + name = TransitivePBXtoSPMAppUITests; + productName = TransitivePBXtoSPMAppUITests; + productReference = 04065CDB2A7454E400472463 /* TransitivePBXtoSPMAppUITests.xctest */; + productType = "com.apple.product-type.bundle.ui-testing"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 04065CB32A7454E300472463 /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastSwiftUpdateCheck = 1430; + LastUpgradeCheck = 1430; + TargetAttributes = { + 04065CBA2A7454E300472463 = { + CreatedOnToolsVersion = 14.3.1; + }; + 04065CD02A7454E400472463 = { + CreatedOnToolsVersion = 14.3.1; + TestTargetID = 04065CBA2A7454E300472463; + }; + 04065CDA2A7454E400472463 = { + CreatedOnToolsVersion = 14.3.1; + TestTargetID = 04065CBA2A7454E300472463; + }; + }; + }; + buildConfigurationList = 04065CB62A7454E300472463 /* Build configuration list for PBXProject "TransitivePBXtoSPMApp" */; + compatibilityVersion = "Xcode 14.0"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 04065CB22A7454E300472463; + productRefGroup = 04065CBC2A7454E300472463 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 04065CBA2A7454E300472463 /* TransitivePBXtoSPMApp */, + 04065CD02A7454E400472463 /* TransitivePBXtoSPMAppTests */, + 04065CDA2A7454E400472463 /* TransitivePBXtoSPMAppUITests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 04065CB92A7454E300472463 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04065CCB2A7454E400472463 /* LaunchScreen.storyboard in Resources */, + 04065CC82A7454E400472463 /* Assets.xcassets in Resources */, + 04065CC62A7454E300472463 /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04065CCF2A7454E400472463 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04065CD92A7454E400472463 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 04065CB72A7454E300472463 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04065CC32A7454E300472463 /* ViewController.swift in Sources */, + 04065CBF2A7454E300472463 /* AppDelegate.swift in Sources */, + 04065CC12A7454E300472463 /* SceneDelegate.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04065CCD2A7454E400472463 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04065CD62A7454E400472463 /* TransitivePBXtoSPMAppTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04065CD72A7454E400472463 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04065CE22A7454E400472463 /* TransitivePBXtoSPMAppUITestsLaunchTests.swift in Sources */, + 04065CE02A7454E400472463 /* TransitivePBXtoSPMAppUITests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 04065CD32A7454E400472463 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 04065CBA2A7454E300472463 /* TransitivePBXtoSPMApp */; + targetProxy = 04065CD22A7454E400472463 /* PBXContainerItemProxy */; + }; + 04065CDD2A7454E400472463 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 04065CBA2A7454E300472463 /* TransitivePBXtoSPMApp */; + targetProxy = 04065CDC2A7454E400472463 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 04065CC42A7454E300472463 /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 04065CC52A7454E300472463 /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + 04065CC92A7454E400472463 /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 04065CCA2A7454E400472463 /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 04065CE32A7454E400472463 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 04065CE42A7454E400472463 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 04065CE62A7454E400472463 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = TransitivePBXtoSPMApp/Info.plist; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; + INFOPLIST_KEY_UIMainStoryboardFile = Main; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.TransitivePBXtoSPMApp; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 04065CE72A7454E400472463 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = TransitivePBXtoSPMApp/Info.plist; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; + INFOPLIST_KEY_UIMainStoryboardFile = Main; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.TransitivePBXtoSPMApp; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + 04065CE92A7454E400472463 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.TransitivePBXtoSPMAppTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/TransitivePBXtoSPMApp.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/TransitivePBXtoSPMApp"; + }; + name = Debug; + }; + 04065CEA2A7454E400472463 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.TransitivePBXtoSPMAppTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/TransitivePBXtoSPMApp.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/TransitivePBXtoSPMApp"; + }; + name = Release; + }; + 04065CEC2A7454E400472463 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.TransitivePBXtoSPMAppUITests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_TARGET_NAME = TransitivePBXtoSPMApp; + }; + name = Debug; + }; + 04065CED2A7454E400472463 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.TransitivePBXtoSPMAppUITests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_TARGET_NAME = TransitivePBXtoSPMApp; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 04065CB62A7454E300472463 /* Build configuration list for PBXProject "TransitivePBXtoSPMApp" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04065CE32A7454E400472463 /* Debug */, + 04065CE42A7454E400472463 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 04065CE52A7454E400472463 /* Build configuration list for PBXNativeTarget "TransitivePBXtoSPMApp" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04065CE62A7454E400472463 /* Debug */, + 04065CE72A7454E400472463 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 04065CE82A7454E400472463 /* Build configuration list for PBXNativeTarget "TransitivePBXtoSPMAppTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04065CE92A7454E400472463 /* Debug */, + 04065CEA2A7454E400472463 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 04065CEB2A7454E400472463 /* Build configuration list for PBXNativeTarget "TransitivePBXtoSPMAppUITests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04065CEC2A7454E400472463 /* Debug */, + 04065CED2A7454E400472463 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 04065CB32A7454E300472463 /* Project object */; +} diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/AppDelegate.swift b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/AppDelegate.swift new file mode 100644 index 0000000..1e2edf9 --- /dev/null +++ b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/AppDelegate.swift @@ -0,0 +1,36 @@ +// +// AppDelegate.swift +// TransitivePBXtoSPMApp +// +// Created by Jared Carlson on 7/28/23. +// + +import UIKit + +@main +class AppDelegate: UIResponder, UIApplicationDelegate { + + + + func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { + // Override point for customization after application launch. + return true + } + + // MARK: UISceneSession Lifecycle + + func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration { + // Called when a new scene session is being created. + // Use this method to select a configuration to create the new scene with. + return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role) + } + + func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set) { + // Called when the user discards a scene session. + // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions. + // Use this method to release any resources that were specific to the discarded scenes, as they will not return. + } + + +} + diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/AccentColor.colorset/Contents.json b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 0000000..eb87897 --- /dev/null +++ b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,11 @@ +{ + "colors" : [ + { + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/AppIcon.appiconset/Contents.json b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..13613e3 --- /dev/null +++ b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,13 @@ +{ + "images" : [ + { + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/Contents.json b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Base.lproj/LaunchScreen.storyboard b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000..865e932 --- /dev/null +++ b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Base.lproj/Main.storyboard b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Base.lproj/Main.storyboard new file mode 100644 index 0000000..25a7638 --- /dev/null +++ b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Base.lproj/Main.storyboard @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Info.plist b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Info.plist new file mode 100644 index 0000000..dd3c9af --- /dev/null +++ b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Info.plist @@ -0,0 +1,25 @@ + + + + + UIApplicationSceneManifest + + UIApplicationSupportsMultipleScenes + + UISceneConfigurations + + UIWindowSceneSessionRoleApplication + + + UISceneConfigurationName + Default Configuration + UISceneDelegateClassName + $(PRODUCT_MODULE_NAME).SceneDelegate + UISceneStoryboardFile + Main + + + + + + diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/SceneDelegate.swift b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/SceneDelegate.swift new file mode 100644 index 0000000..a68265d --- /dev/null +++ b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/SceneDelegate.swift @@ -0,0 +1,52 @@ +// +// SceneDelegate.swift +// TransitivePBXtoSPMApp +// +// Created by Jared Carlson on 7/28/23. +// + +import UIKit + +class SceneDelegate: UIResponder, UIWindowSceneDelegate { + + var window: UIWindow? + + + func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { + // Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`. + // If using a storyboard, the `window` property will automatically be initialized and attached to the scene. + // This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead). + guard let _ = (scene as? UIWindowScene) else { return } + } + + func sceneDidDisconnect(_ scene: UIScene) { + // Called as the scene is being released by the system. + // This occurs shortly after the scene enters the background, or when its session is discarded. + // Release any resources associated with this scene that can be re-created the next time the scene connects. + // The scene may re-connect later, as its session was not necessarily discarded (see `application:didDiscardSceneSessions` instead). + } + + func sceneDidBecomeActive(_ scene: UIScene) { + // Called when the scene has moved from an inactive state to an active state. + // Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive. + } + + func sceneWillResignActive(_ scene: UIScene) { + // Called when the scene will move from an active state to an inactive state. + // This may occur due to temporary interruptions (ex. an incoming phone call). + } + + func sceneWillEnterForeground(_ scene: UIScene) { + // Called as the scene transitions from the background to the foreground. + // Use this method to undo the changes made on entering the background. + } + + func sceneDidEnterBackground(_ scene: UIScene) { + // Called as the scene transitions from the foreground to the background. + // Use this method to save data, release shared resources, and store enough scene-specific state information + // to restore the scene back to its current state. + } + + +} + diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/ViewController.swift b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/ViewController.swift new file mode 100644 index 0000000..d8a89b0 --- /dev/null +++ b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/ViewController.swift @@ -0,0 +1,22 @@ +// +// ViewController.swift +// TransitivePBXtoSPMApp +// +// Created by Jared Carlson on 7/28/23. +// + +import UIKit + + +class ViewController: UIViewController { + + override func viewDidLoad() { + super.viewDidLoad() + // Do any additional setup after loading the view. + let ninth_fib = Fibonacci(n: 9) + print("The ninth fibonacci number is \(ninth_fib)") + } + + +} + diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppTests/TransitivePBXtoSPMAppTests.swift b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppTests/TransitivePBXtoSPMAppTests.swift new file mode 100644 index 0000000..61a4daf --- /dev/null +++ b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppTests/TransitivePBXtoSPMAppTests.swift @@ -0,0 +1,36 @@ +// +// TransitivePBXtoSPMAppTests.swift +// TransitivePBXtoSPMAppTests +// +// Created by Jared Carlson on 7/28/23. +// + +import XCTest +@testable import TransitivePBXtoSPMApp + +final class TransitivePBXtoSPMAppTests: XCTestCase { + + override func setUpWithError() throws { + // Put setup code here. This method is called before the invocation of each test method in the class. + } + + override func tearDownWithError() throws { + // Put teardown code here. This method is called after the invocation of each test method in the class. + } + + func testExample() throws { + // This is an example of a functional test case. + // Use XCTAssert and related functions to verify your tests produce the correct results. + // Any test you write for XCTest can be annotated as throws and async. + // Mark your test throws to produce an unexpected failure when your test encounters an uncaught error. + // Mark your test async to allow awaiting for asynchronous code to complete. Check the results with assertions afterwards. + } + + func testPerformanceExample() throws { + // This is an example of a performance test case. + self.measure { + // Put the code you want to measure the time of here. + } + } + +} diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppUITests/TransitivePBXtoSPMAppUITests.swift b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppUITests/TransitivePBXtoSPMAppUITests.swift new file mode 100644 index 0000000..daf745b --- /dev/null +++ b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppUITests/TransitivePBXtoSPMAppUITests.swift @@ -0,0 +1,41 @@ +// +// TransitivePBXtoSPMAppUITests.swift +// TransitivePBXtoSPMAppUITests +// +// Created by Jared Carlson on 7/28/23. +// + +import XCTest + +final class TransitivePBXtoSPMAppUITests: XCTestCase { + + override func setUpWithError() throws { + // Put setup code here. This method is called before the invocation of each test method in the class. + + // In UI tests it is usually best to stop immediately when a failure occurs. + continueAfterFailure = false + + // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this. + } + + override func tearDownWithError() throws { + // Put teardown code here. This method is called after the invocation of each test method in the class. + } + + func testExample() throws { + // UI tests must launch the application that they test. + let app = XCUIApplication() + app.launch() + + // Use XCTAssert and related functions to verify your tests produce the correct results. + } + + func testLaunchPerformance() throws { + if #available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 7.0, *) { + // This measures how long it takes to launch your application. + measure(metrics: [XCTApplicationLaunchMetric()]) { + XCUIApplication().launch() + } + } + } +} diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppUITests/TransitivePBXtoSPMAppUITestsLaunchTests.swift b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppUITests/TransitivePBXtoSPMAppUITestsLaunchTests.swift new file mode 100644 index 0000000..9dde6c7 --- /dev/null +++ b/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppUITests/TransitivePBXtoSPMAppUITestsLaunchTests.swift @@ -0,0 +1,32 @@ +// +// TransitivePBXtoSPMAppUITestsLaunchTests.swift +// TransitivePBXtoSPMAppUITests +// +// Created by Jared Carlson on 7/28/23. +// + +import XCTest + +final class TransitivePBXtoSPMAppUITestsLaunchTests: XCTestCase { + + override class var runsForEachTargetApplicationUIConfiguration: Bool { + true + } + + override func setUpWithError() throws { + continueAfterFailure = false + } + + func testLaunch() throws { + let app = XCUIApplication() + app.launch() + + // Insert steps here to perform after app launch but before taking a screenshot, + // such as logging into a test account or navigating somewhere in the app + + let attachment = XCTAttachment(screenshot: app.screenshot()) + attachment.name = "Launch Screen" + attachment.lifetime = .keepAlways + add(attachment) + } +} diff --git a/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp.xcodeproj/project.pbxproj b/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp.xcodeproj/project.pbxproj new file mode 100644 index 0000000..09f928c --- /dev/null +++ b/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp.xcodeproj/project.pbxproj @@ -0,0 +1,678 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 56; + objects = { + +/* Begin PBXBuildFile section */ + 0495B6062A74BFE300327A4E /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0495B6052A74BFE300327A4E /* AppDelegate.swift */; }; + 0495B6082A74BFE300327A4E /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0495B6072A74BFE300327A4E /* SceneDelegate.swift */; }; + 0495B60A2A74BFE300327A4E /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0495B6092A74BFE300327A4E /* ViewController.swift */; }; + 0495B60D2A74BFE300327A4E /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 0495B60B2A74BFE300327A4E /* Main.storyboard */; }; + 0495B60F2A74BFE400327A4E /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 0495B60E2A74BFE400327A4E /* Assets.xcassets */; }; + 0495B6122A74BFE400327A4E /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 0495B6102A74BFE400327A4E /* LaunchScreen.storyboard */; }; + 0495B61D2A74BFE400327A4E /* TransitiveTestAppTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0495B61C2A74BFE400327A4E /* TransitiveTestAppTests.swift */; }; + 0495B6272A74BFE400327A4E /* TransitiveTestAppUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0495B6262A74BFE400327A4E /* TransitiveTestAppUITests.swift */; }; + 0495B6292A74BFE400327A4E /* TransitiveTestAppUITestsLaunchTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0495B6282A74BFE400327A4E /* TransitiveTestAppUITestsLaunchTests.swift */; }; + 0495B66C2A74C14000327A4E /* SwiftCalculation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0495B65F2A74C03700327A4E /* SwiftCalculation.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 0495B6192A74BFE400327A4E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0495B5FA2A74BFE300327A4E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0495B6012A74BFE300327A4E; + remoteInfo = TransitiveTestApp; + }; + 0495B6232A74BFE400327A4E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0495B5FA2A74BFE300327A4E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0495B6012A74BFE300327A4E; + remoteInfo = TransitiveTestApp; + }; + 0495B65E2A74C03700327A4E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0495B6592A74C03600327A4E /* SwiftCalculation.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 0495B63F2A74C03600327A4E; + remoteInfo = SwiftCalculation; + }; + 0495B6602A74C03700327A4E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0495B6592A74C03600327A4E /* SwiftCalculation.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 0495B6492A74C03600327A4E; + remoteInfo = SwiftCalculationTests; + }; + 0495B6692A74C13600327A4E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0495B6592A74C03600327A4E /* SwiftCalculation.xcodeproj */; + proxyType = 1; + remoteGlobalIDString = 0495B63E2A74C03600327A4E; + remoteInfo = SwiftCalculation; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 0495B6022A74BFE300327A4E /* TransitiveTestApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TransitiveTestApp.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 0495B6052A74BFE300327A4E /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 0495B6072A74BFE300327A4E /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; }; + 0495B6092A74BFE300327A4E /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; + 0495B60C2A74BFE300327A4E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 0495B60E2A74BFE400327A4E /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 0495B6112A74BFE400327A4E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + 0495B6132A74BFE400327A4E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 0495B6182A74BFE400327A4E /* TransitiveTestAppTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TransitiveTestAppTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 0495B61C2A74BFE400327A4E /* TransitiveTestAppTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TransitiveTestAppTests.swift; sourceTree = ""; }; + 0495B6222A74BFE400327A4E /* TransitiveTestAppUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TransitiveTestAppUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 0495B6262A74BFE400327A4E /* TransitiveTestAppUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TransitiveTestAppUITests.swift; sourceTree = ""; }; + 0495B6282A74BFE400327A4E /* TransitiveTestAppUITestsLaunchTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TransitiveTestAppUITestsLaunchTests.swift; sourceTree = ""; }; + 0495B6592A74C03600327A4E /* SwiftCalculation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = SwiftCalculation.xcodeproj; path = ../SwiftCalculation/SwiftCalculation.xcodeproj; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 0495B5FF2A74BFE300327A4E /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 0495B66C2A74C14000327A4E /* SwiftCalculation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0495B6152A74BFE400327A4E /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0495B61F2A74BFE400327A4E /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 0495B5F92A74BFE300327A4E = { + isa = PBXGroup; + children = ( + 0495B6592A74C03600327A4E /* SwiftCalculation.xcodeproj */, + 0495B6042A74BFE300327A4E /* TransitiveTestApp */, + 0495B61B2A74BFE400327A4E /* TransitiveTestAppTests */, + 0495B6252A74BFE400327A4E /* TransitiveTestAppUITests */, + 0495B6032A74BFE300327A4E /* Products */, + 0495B66B2A74C14000327A4E /* Frameworks */, + ); + sourceTree = ""; + }; + 0495B6032A74BFE300327A4E /* Products */ = { + isa = PBXGroup; + children = ( + 0495B6022A74BFE300327A4E /* TransitiveTestApp.app */, + 0495B6182A74BFE400327A4E /* TransitiveTestAppTests.xctest */, + 0495B6222A74BFE400327A4E /* TransitiveTestAppUITests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 0495B6042A74BFE300327A4E /* TransitiveTestApp */ = { + isa = PBXGroup; + children = ( + 0495B6052A74BFE300327A4E /* AppDelegate.swift */, + 0495B6072A74BFE300327A4E /* SceneDelegate.swift */, + 0495B6092A74BFE300327A4E /* ViewController.swift */, + 0495B60B2A74BFE300327A4E /* Main.storyboard */, + 0495B60E2A74BFE400327A4E /* Assets.xcassets */, + 0495B6102A74BFE400327A4E /* LaunchScreen.storyboard */, + 0495B6132A74BFE400327A4E /* Info.plist */, + ); + path = TransitiveTestApp; + sourceTree = ""; + }; + 0495B61B2A74BFE400327A4E /* TransitiveTestAppTests */ = { + isa = PBXGroup; + children = ( + 0495B61C2A74BFE400327A4E /* TransitiveTestAppTests.swift */, + ); + path = TransitiveTestAppTests; + sourceTree = ""; + }; + 0495B6252A74BFE400327A4E /* TransitiveTestAppUITests */ = { + isa = PBXGroup; + children = ( + 0495B6262A74BFE400327A4E /* TransitiveTestAppUITests.swift */, + 0495B6282A74BFE400327A4E /* TransitiveTestAppUITestsLaunchTests.swift */, + ); + path = TransitiveTestAppUITests; + sourceTree = ""; + }; + 0495B65A2A74C03600327A4E /* Products */ = { + isa = PBXGroup; + children = ( + 0495B65F2A74C03700327A4E /* SwiftCalculation.framework */, + 0495B6612A74C03700327A4E /* SwiftCalculationTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 0495B66B2A74C14000327A4E /* Frameworks */ = { + isa = PBXGroup; + children = ( + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 0495B6012A74BFE300327A4E /* TransitiveTestApp */ = { + isa = PBXNativeTarget; + buildConfigurationList = 0495B62C2A74BFE400327A4E /* Build configuration list for PBXNativeTarget "TransitiveTestApp" */; + buildPhases = ( + 0495B5FE2A74BFE300327A4E /* Sources */, + 0495B5FF2A74BFE300327A4E /* Frameworks */, + 0495B6002A74BFE300327A4E /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 0495B66A2A74C13600327A4E /* PBXTargetDependency */, + ); + name = TransitiveTestApp; + productName = TransitiveTestApp; + productReference = 0495B6022A74BFE300327A4E /* TransitiveTestApp.app */; + productType = "com.apple.product-type.application"; + }; + 0495B6172A74BFE400327A4E /* TransitiveTestAppTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 0495B62F2A74BFE400327A4E /* Build configuration list for PBXNativeTarget "TransitiveTestAppTests" */; + buildPhases = ( + 0495B6142A74BFE400327A4E /* Sources */, + 0495B6152A74BFE400327A4E /* Frameworks */, + 0495B6162A74BFE400327A4E /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 0495B61A2A74BFE400327A4E /* PBXTargetDependency */, + ); + name = TransitiveTestAppTests; + productName = TransitiveTestAppTests; + productReference = 0495B6182A74BFE400327A4E /* TransitiveTestAppTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 0495B6212A74BFE400327A4E /* TransitiveTestAppUITests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 0495B6322A74BFE400327A4E /* Build configuration list for PBXNativeTarget "TransitiveTestAppUITests" */; + buildPhases = ( + 0495B61E2A74BFE400327A4E /* Sources */, + 0495B61F2A74BFE400327A4E /* Frameworks */, + 0495B6202A74BFE400327A4E /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 0495B6242A74BFE400327A4E /* PBXTargetDependency */, + ); + name = TransitiveTestAppUITests; + productName = TransitiveTestAppUITests; + productReference = 0495B6222A74BFE400327A4E /* TransitiveTestAppUITests.xctest */; + productType = "com.apple.product-type.bundle.ui-testing"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 0495B5FA2A74BFE300327A4E /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastSwiftUpdateCheck = 1430; + LastUpgradeCheck = 1430; + TargetAttributes = { + 0495B6012A74BFE300327A4E = { + CreatedOnToolsVersion = 14.3.1; + }; + 0495B6172A74BFE400327A4E = { + CreatedOnToolsVersion = 14.3.1; + TestTargetID = 0495B6012A74BFE300327A4E; + }; + 0495B6212A74BFE400327A4E = { + CreatedOnToolsVersion = 14.3.1; + TestTargetID = 0495B6012A74BFE300327A4E; + }; + }; + }; + buildConfigurationList = 0495B5FD2A74BFE300327A4E /* Build configuration list for PBXProject "TransitiveTestApp" */; + compatibilityVersion = "Xcode 14.0"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 0495B5F92A74BFE300327A4E; + productRefGroup = 0495B6032A74BFE300327A4E /* Products */; + projectDirPath = ""; + projectReferences = ( + { + ProductGroup = 0495B65A2A74C03600327A4E /* Products */; + ProjectRef = 0495B6592A74C03600327A4E /* SwiftCalculation.xcodeproj */; + }, + ); + projectRoot = ""; + targets = ( + 0495B6012A74BFE300327A4E /* TransitiveTestApp */, + 0495B6172A74BFE400327A4E /* TransitiveTestAppTests */, + 0495B6212A74BFE400327A4E /* TransitiveTestAppUITests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXReferenceProxy section */ + 0495B65F2A74C03700327A4E /* SwiftCalculation.framework */ = { + isa = PBXReferenceProxy; + fileType = wrapper.framework; + path = SwiftCalculation.framework; + remoteRef = 0495B65E2A74C03700327A4E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 0495B6612A74C03700327A4E /* SwiftCalculationTests.xctest */ = { + isa = PBXReferenceProxy; + fileType = wrapper.cfbundle; + path = SwiftCalculationTests.xctest; + remoteRef = 0495B6602A74C03700327A4E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; +/* End PBXReferenceProxy section */ + +/* Begin PBXResourcesBuildPhase section */ + 0495B6002A74BFE300327A4E /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0495B6122A74BFE400327A4E /* LaunchScreen.storyboard in Resources */, + 0495B60F2A74BFE400327A4E /* Assets.xcassets in Resources */, + 0495B60D2A74BFE300327A4E /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0495B6162A74BFE400327A4E /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0495B6202A74BFE400327A4E /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 0495B5FE2A74BFE300327A4E /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0495B60A2A74BFE300327A4E /* ViewController.swift in Sources */, + 0495B6062A74BFE300327A4E /* AppDelegate.swift in Sources */, + 0495B6082A74BFE300327A4E /* SceneDelegate.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0495B6142A74BFE400327A4E /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0495B61D2A74BFE400327A4E /* TransitiveTestAppTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0495B61E2A74BFE400327A4E /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0495B6272A74BFE400327A4E /* TransitiveTestAppUITests.swift in Sources */, + 0495B6292A74BFE400327A4E /* TransitiveTestAppUITestsLaunchTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 0495B61A2A74BFE400327A4E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 0495B6012A74BFE300327A4E /* TransitiveTestApp */; + targetProxy = 0495B6192A74BFE400327A4E /* PBXContainerItemProxy */; + }; + 0495B6242A74BFE400327A4E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 0495B6012A74BFE300327A4E /* TransitiveTestApp */; + targetProxy = 0495B6232A74BFE400327A4E /* PBXContainerItemProxy */; + }; + 0495B66A2A74C13600327A4E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SwiftCalculation; + targetProxy = 0495B6692A74C13600327A4E /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 0495B60B2A74BFE300327A4E /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 0495B60C2A74BFE300327A4E /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + 0495B6102A74BFE400327A4E /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 0495B6112A74BFE400327A4E /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 0495B62A2A74BFE400327A4E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 0495B62B2A74BFE400327A4E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 0495B62D2A74BFE400327A4E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = TransitiveTestApp/Info.plist; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; + INFOPLIST_KEY_UIMainStoryboardFile = Main; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.TransitiveTestApp; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 0495B62E2A74BFE400327A4E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = TransitiveTestApp/Info.plist; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; + INFOPLIST_KEY_UIMainStoryboardFile = Main; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.TransitiveTestApp; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + 0495B6302A74BFE400327A4E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.TransitiveTestAppTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/TransitiveTestApp.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/TransitiveTestApp"; + }; + name = Debug; + }; + 0495B6312A74BFE400327A4E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.TransitiveTestAppTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/TransitiveTestApp.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/TransitiveTestApp"; + }; + name = Release; + }; + 0495B6332A74BFE400327A4E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.TransitiveTestAppUITests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_TARGET_NAME = TransitiveTestApp; + }; + name = Debug; + }; + 0495B6342A74BFE400327A4E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.TransitiveTestAppUITests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_TARGET_NAME = TransitiveTestApp; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 0495B5FD2A74BFE300327A4E /* Build configuration list for PBXProject "TransitiveTestApp" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0495B62A2A74BFE400327A4E /* Debug */, + 0495B62B2A74BFE400327A4E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 0495B62C2A74BFE400327A4E /* Build configuration list for PBXNativeTarget "TransitiveTestApp" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0495B62D2A74BFE400327A4E /* Debug */, + 0495B62E2A74BFE400327A4E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 0495B62F2A74BFE400327A4E /* Build configuration list for PBXNativeTarget "TransitiveTestAppTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0495B6302A74BFE400327A4E /* Debug */, + 0495B6312A74BFE400327A4E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 0495B6322A74BFE400327A4E /* Build configuration list for PBXNativeTarget "TransitiveTestAppUITests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0495B6332A74BFE400327A4E /* Debug */, + 0495B6342A74BFE400327A4E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 0495B5FA2A74BFE300327A4E /* Project object */; +} diff --git a/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/AppDelegate.swift b/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/AppDelegate.swift new file mode 100644 index 0000000..bc2299d --- /dev/null +++ b/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/AppDelegate.swift @@ -0,0 +1,36 @@ +// +// AppDelegate.swift +// TransitiveTestApp +// +// Created by Jared Carlson on 7/28/23. +// + +import UIKit + +@main +class AppDelegate: UIResponder, UIApplicationDelegate { + + + + func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { + // Override point for customization after application launch. + return true + } + + // MARK: UISceneSession Lifecycle + + func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration { + // Called when a new scene session is being created. + // Use this method to select a configuration to create the new scene with. + return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role) + } + + func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set) { + // Called when the user discards a scene session. + // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions. + // Use this method to release any resources that were specific to the discarded scenes, as they will not return. + } + + +} + diff --git a/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/AccentColor.colorset/Contents.json b/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 0000000..eb87897 --- /dev/null +++ b/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,11 @@ +{ + "colors" : [ + { + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/AppIcon.appiconset/Contents.json b/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..13613e3 --- /dev/null +++ b/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,13 @@ +{ + "images" : [ + { + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/Contents.json b/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Base.lproj/LaunchScreen.storyboard b/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000..865e932 --- /dev/null +++ b/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Base.lproj/Main.storyboard b/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Base.lproj/Main.storyboard new file mode 100644 index 0000000..25a7638 --- /dev/null +++ b/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Base.lproj/Main.storyboard @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Info.plist b/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Info.plist new file mode 100644 index 0000000..dd3c9af --- /dev/null +++ b/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Info.plist @@ -0,0 +1,25 @@ + + + + + UIApplicationSceneManifest + + UIApplicationSupportsMultipleScenes + + UISceneConfigurations + + UIWindowSceneSessionRoleApplication + + + UISceneConfigurationName + Default Configuration + UISceneDelegateClassName + $(PRODUCT_MODULE_NAME).SceneDelegate + UISceneStoryboardFile + Main + + + + + + diff --git a/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/SceneDelegate.swift b/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/SceneDelegate.swift new file mode 100644 index 0000000..2c9ab63 --- /dev/null +++ b/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/SceneDelegate.swift @@ -0,0 +1,52 @@ +// +// SceneDelegate.swift +// TransitiveTestApp +// +// Created by Jared Carlson on 7/28/23. +// + +import UIKit + +class SceneDelegate: UIResponder, UIWindowSceneDelegate { + + var window: UIWindow? + + + func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { + // Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`. + // If using a storyboard, the `window` property will automatically be initialized and attached to the scene. + // This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead). + guard let _ = (scene as? UIWindowScene) else { return } + } + + func sceneDidDisconnect(_ scene: UIScene) { + // Called as the scene is being released by the system. + // This occurs shortly after the scene enters the background, or when its session is discarded. + // Release any resources associated with this scene that can be re-created the next time the scene connects. + // The scene may re-connect later, as its session was not necessarily discarded (see `application:didDiscardSceneSessions` instead). + } + + func sceneDidBecomeActive(_ scene: UIScene) { + // Called when the scene has moved from an inactive state to an active state. + // Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive. + } + + func sceneWillResignActive(_ scene: UIScene) { + // Called when the scene will move from an active state to an inactive state. + // This may occur due to temporary interruptions (ex. an incoming phone call). + } + + func sceneWillEnterForeground(_ scene: UIScene) { + // Called as the scene transitions from the background to the foreground. + // Use this method to undo the changes made on entering the background. + } + + func sceneDidEnterBackground(_ scene: UIScene) { + // Called as the scene transitions from the foreground to the background. + // Use this method to save data, release shared resources, and store enough scene-specific state information + // to restore the scene back to its current state. + } + + +} + diff --git a/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/ViewController.swift b/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/ViewController.swift new file mode 100644 index 0000000..d3ab6f1 --- /dev/null +++ b/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/ViewController.swift @@ -0,0 +1,23 @@ +// +// ViewController.swift +// TransitiveTestApp +// +// Created by Jared Carlson on 7/28/23. +// + +import UIKit +import SwiftCalculation + + +class ViewController: UIViewController { + + override func viewDidLoad() { + super.viewDidLoad() + // Do any additional setup after loading the view. + let ninth_fib = Fibonacci(n: 9) + print("The ninth fibonacci number is \(ninth_fib)") + } + + +} + diff --git a/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppTests/TransitiveTestAppTests.swift b/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppTests/TransitiveTestAppTests.swift new file mode 100644 index 0000000..27ca60a --- /dev/null +++ b/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppTests/TransitiveTestAppTests.swift @@ -0,0 +1,36 @@ +// +// TransitiveTestAppTests.swift +// TransitiveTestAppTests +// +// Created by Jared Carlson on 7/28/23. +// + +import XCTest +@testable import TransitiveTestApp + +final class TransitiveTestAppTests: XCTestCase { + + override func setUpWithError() throws { + // Put setup code here. This method is called before the invocation of each test method in the class. + } + + override func tearDownWithError() throws { + // Put teardown code here. This method is called after the invocation of each test method in the class. + } + + func testExample() throws { + // This is an example of a functional test case. + // Use XCTAssert and related functions to verify your tests produce the correct results. + // Any test you write for XCTest can be annotated as throws and async. + // Mark your test throws to produce an unexpected failure when your test encounters an uncaught error. + // Mark your test async to allow awaiting for asynchronous code to complete. Check the results with assertions afterwards. + } + + func testPerformanceExample() throws { + // This is an example of a performance test case. + self.measure { + // Put the code you want to measure the time of here. + } + } + +} diff --git a/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppUITests/TransitiveTestAppUITests.swift b/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppUITests/TransitiveTestAppUITests.swift new file mode 100644 index 0000000..4e964df --- /dev/null +++ b/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppUITests/TransitiveTestAppUITests.swift @@ -0,0 +1,41 @@ +// +// TransitiveTestAppUITests.swift +// TransitiveTestAppUITests +// +// Created by Jared Carlson on 7/28/23. +// + +import XCTest + +final class TransitiveTestAppUITests: XCTestCase { + + override func setUpWithError() throws { + // Put setup code here. This method is called before the invocation of each test method in the class. + + // In UI tests it is usually best to stop immediately when a failure occurs. + continueAfterFailure = false + + // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this. + } + + override func tearDownWithError() throws { + // Put teardown code here. This method is called after the invocation of each test method in the class. + } + + func testExample() throws { + // UI tests must launch the application that they test. + let app = XCUIApplication() + app.launch() + + // Use XCTAssert and related functions to verify your tests produce the correct results. + } + + func testLaunchPerformance() throws { + if #available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 7.0, *) { + // This measures how long it takes to launch your application. + measure(metrics: [XCTApplicationLaunchMetric()]) { + XCUIApplication().launch() + } + } + } +} diff --git a/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppUITests/TransitiveTestAppUITestsLaunchTests.swift b/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppUITests/TransitiveTestAppUITestsLaunchTests.swift new file mode 100644 index 0000000..13bdac7 --- /dev/null +++ b/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppUITests/TransitiveTestAppUITestsLaunchTests.swift @@ -0,0 +1,32 @@ +// +// TransitiveTestAppUITestsLaunchTests.swift +// TransitiveTestAppUITests +// +// Created by Jared Carlson on 7/28/23. +// + +import XCTest + +final class TransitiveTestAppUITestsLaunchTests: XCTestCase { + + override class var runsForEachTargetApplicationUIConfiguration: Bool { + true + } + + override func setUpWithError() throws { + continueAfterFailure = false + } + + func testLaunch() throws { + let app = XCUIApplication() + app.launch() + + // Insert steps here to perform after app launch but before taking a screenshot, + // such as logging into a test account or navigating somewhere in the app + + let attachment = XCTAttachment(screenshot: app.screenshot()) + attachment.name = "Launch Screen" + attachment.lifetime = .keepAlways + add(attachment) + } +} From 6e92e231956ef66a02a309eb261b1fc9ef591936 Mon Sep 17 00:00:00 2001 From: Jared Carlson Date: Sat, 29 Jul 2023 17:53:07 -0400 Subject: [PATCH 2/2] Moving transitive test assets into appropriate place --- .../SimpleTransitiveApp.xcodeproj/project.pbxproj | 0 .../project.xcworkspace/contents.xcworkspacedata | 0 .../project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist | 0 .../SimpleTransitiveApp/SimpleTransitiveApp/AppDelegate.swift | 0 .../Assets.xcassets/AccentColor.colorset/Contents.json | 0 .../Assets.xcassets/AppIcon.appiconset/Contents.json | 0 .../SimpleTransitiveApp/Assets.xcassets/Contents.json | 0 .../SimpleTransitiveApp/Base.lproj/LaunchScreen.storyboard | 0 .../SimpleTransitiveApp/Base.lproj/Main.storyboard | 0 .../SimpleTransitiveApp/SimpleTransitiveApp/Info.plist | 0 .../SimpleTransitiveApp/SimpleTransitiveApp/SceneDelegate.swift | 0 .../SimpleTransitiveApp/SimpleTransitiveApp/ViewController.swift | 0 .../SimpleTransitiveAppTests/SimpleTransitiveAppTests.swift | 0 .../SimpleTransitiveAppUITests/SimpleTransitiveAppUITests.swift | 0 .../SimpleTransitiveAppUITestsLaunchTests.swift | 0 .../transitive-project-and-components/SwiftCalc/.gitignore | 0 .../transitive-project-and-components/SwiftCalc/Package.swift | 0 .../SwiftCalc/Sources/SwiftCalc/SwiftCalc.swift | 0 .../SwiftCalc/Tests/SwiftCalcTests/SwiftCalcTests.swift | 0 .../SwiftCalculation/SwiftCalculation.xcodeproj/project.pbxproj | 0 .../SwiftCalculation/SwiftCalculation/Calculation.swift | 0 .../SwiftCalculation/SwiftCalculation.docc/SwiftCalculation.md | 0 .../SwiftCalculation/SwiftCalculation/SwiftCalculation.h | 0 .../SwiftCalculationTests/SwiftCalculationTests.swift | 0 .../transitive-project-and-components/SwiftMath/.gitignore | 0 .../transitive-project-and-components/SwiftMath/Package.swift | 0 .../SwiftMath/Sources/SwiftMath/SwiftMath.swift | 0 .../SwiftMath/Tests/SwiftMathTests/SwiftMathTests.swift | 0 .../TransitivePBXtoSPM.xcworkspace/contents.xcworkspacedata | 0 .../xcshareddata/IDEWorkspaceChecks.plist | 0 .../TransitivePBXtoSPMApp.xcodeproj/project.pbxproj | 0 .../project.xcworkspace/contents.xcworkspacedata | 0 .../project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist | 0 .../TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/AppDelegate.swift | 0 .../Assets.xcassets/AccentColor.colorset/Contents.json | 0 .../Assets.xcassets/AppIcon.appiconset/Contents.json | 0 .../TransitivePBXtoSPMApp/Assets.xcassets/Contents.json | 0 .../TransitivePBXtoSPMApp/Base.lproj/LaunchScreen.storyboard | 0 .../TransitivePBXtoSPMApp/Base.lproj/Main.storyboard | 0 .../TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Info.plist | 0 .../TransitivePBXtoSPMApp/SceneDelegate.swift | 0 .../TransitivePBXtoSPMApp/ViewController.swift | 0 .../TransitivePBXtoSPMAppTests/TransitivePBXtoSPMAppTests.swift | 0 .../TransitivePBXtoSPMAppUITests.swift | 0 .../TransitivePBXtoSPMAppUITestsLaunchTests.swift | 0 .../TransitiveTestApp/TransitiveTestApp.xcodeproj/project.pbxproj | 0 .../TransitiveTestApp/TransitiveTestApp/AppDelegate.swift | 0 .../Assets.xcassets/AccentColor.colorset/Contents.json | 0 .../Assets.xcassets/AppIcon.appiconset/Contents.json | 0 .../TransitiveTestApp/Assets.xcassets/Contents.json | 0 .../TransitiveTestApp/Base.lproj/LaunchScreen.storyboard | 0 .../TransitiveTestApp/Base.lproj/Main.storyboard | 0 .../TransitiveTestApp/TransitiveTestApp/Info.plist | 0 .../TransitiveTestApp/TransitiveTestApp/SceneDelegate.swift | 0 .../TransitiveTestApp/TransitiveTestApp/ViewController.swift | 0 .../TransitiveTestAppTests/TransitiveTestAppTests.swift | 0 .../TransitiveTestAppUITests/TransitiveTestAppUITests.swift | 0 .../TransitiveTestAppUITestsLaunchTests.swift | 0 58 files changed, 0 insertions(+), 0 deletions(-) rename {Tests => TestAssets}/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.pbxproj (100%) rename {Tests => TestAssets}/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata (100%) rename {Tests => TestAssets}/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist (100%) rename {Tests => TestAssets}/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/AppDelegate.swift (100%) rename {Tests => TestAssets}/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/AccentColor.colorset/Contents.json (100%) rename {Tests => TestAssets}/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/AppIcon.appiconset/Contents.json (100%) rename {Tests => TestAssets}/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/Contents.json (100%) rename {Tests => TestAssets}/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Base.lproj/LaunchScreen.storyboard (100%) rename {Tests => TestAssets}/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Base.lproj/Main.storyboard (100%) rename {Tests => TestAssets}/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Info.plist (100%) rename {Tests => TestAssets}/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/SceneDelegate.swift (100%) rename {Tests => TestAssets}/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/ViewController.swift (100%) rename {Tests => TestAssets}/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppTests/SimpleTransitiveAppTests.swift (100%) rename {Tests => TestAssets}/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppUITests/SimpleTransitiveAppUITests.swift (100%) rename {Tests => TestAssets}/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppUITests/SimpleTransitiveAppUITestsLaunchTests.swift (100%) rename {Tests => TestAssets}/transitive-project-and-components/SwiftCalc/.gitignore (100%) rename {Tests => TestAssets}/transitive-project-and-components/SwiftCalc/Package.swift (100%) rename {Tests => TestAssets}/transitive-project-and-components/SwiftCalc/Sources/SwiftCalc/SwiftCalc.swift (100%) rename {Tests => TestAssets}/transitive-project-and-components/SwiftCalc/Tests/SwiftCalcTests/SwiftCalcTests.swift (100%) rename {Tests => TestAssets}/transitive-project-and-components/SwiftCalculation/SwiftCalculation.xcodeproj/project.pbxproj (100%) rename {Tests => TestAssets}/transitive-project-and-components/SwiftCalculation/SwiftCalculation/Calculation.swift (100%) rename {Tests => TestAssets}/transitive-project-and-components/SwiftCalculation/SwiftCalculation/SwiftCalculation.docc/SwiftCalculation.md (100%) rename {Tests => TestAssets}/transitive-project-and-components/SwiftCalculation/SwiftCalculation/SwiftCalculation.h (100%) rename {Tests => TestAssets}/transitive-project-and-components/SwiftCalculation/SwiftCalculationTests/SwiftCalculationTests.swift (100%) rename {Tests => TestAssets}/transitive-project-and-components/SwiftMath/.gitignore (100%) rename {Tests => TestAssets}/transitive-project-and-components/SwiftMath/Package.swift (100%) rename {Tests => TestAssets}/transitive-project-and-components/SwiftMath/Sources/SwiftMath/SwiftMath.swift (100%) rename {Tests => TestAssets}/transitive-project-and-components/SwiftMath/Tests/SwiftMathTests/SwiftMathTests.swift (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitivePBXtoSPM.xcworkspace/contents.xcworkspacedata (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitivePBXtoSPM.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.pbxproj (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/AppDelegate.swift (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/AccentColor.colorset/Contents.json (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/AppIcon.appiconset/Contents.json (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/Contents.json (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Base.lproj/LaunchScreen.storyboard (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Base.lproj/Main.storyboard (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Info.plist (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/SceneDelegate.swift (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/ViewController.swift (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppTests/TransitivePBXtoSPMAppTests.swift (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppUITests/TransitivePBXtoSPMAppUITests.swift (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppUITests/TransitivePBXtoSPMAppUITestsLaunchTests.swift (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp.xcodeproj/project.pbxproj (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/AppDelegate.swift (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/AccentColor.colorset/Contents.json (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/AppIcon.appiconset/Contents.json (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/Contents.json (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Base.lproj/LaunchScreen.storyboard (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Base.lproj/Main.storyboard (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Info.plist (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/SceneDelegate.swift (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/ViewController.swift (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppTests/TransitiveTestAppTests.swift (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppUITests/TransitiveTestAppUITests.swift (100%) rename {Tests => TestAssets}/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppUITests/TransitiveTestAppUITestsLaunchTests.swift (100%) diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.pbxproj b/TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.pbxproj similarity index 100% rename from Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.pbxproj rename to TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.pbxproj diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata similarity index 100% rename from Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata rename to TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist similarity index 100% rename from Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist rename to TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/AppDelegate.swift b/TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/AppDelegate.swift similarity index 100% rename from Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/AppDelegate.swift rename to TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/AppDelegate.swift diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/AccentColor.colorset/Contents.json b/TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/AccentColor.colorset/Contents.json similarity index 100% rename from Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/AccentColor.colorset/Contents.json rename to TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/AccentColor.colorset/Contents.json diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/AppIcon.appiconset/Contents.json b/TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/AppIcon.appiconset/Contents.json similarity index 100% rename from Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/AppIcon.appiconset/Contents.json rename to TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/AppIcon.appiconset/Contents.json diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/Contents.json b/TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/Contents.json similarity index 100% rename from Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/Contents.json rename to TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Assets.xcassets/Contents.json diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Base.lproj/LaunchScreen.storyboard b/TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Base.lproj/LaunchScreen.storyboard similarity index 100% rename from Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Base.lproj/LaunchScreen.storyboard rename to TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Base.lproj/LaunchScreen.storyboard diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Base.lproj/Main.storyboard b/TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Base.lproj/Main.storyboard similarity index 100% rename from Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Base.lproj/Main.storyboard rename to TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Base.lproj/Main.storyboard diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Info.plist b/TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Info.plist similarity index 100% rename from Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Info.plist rename to TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/Info.plist diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/SceneDelegate.swift b/TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/SceneDelegate.swift similarity index 100% rename from Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/SceneDelegate.swift rename to TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/SceneDelegate.swift diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/ViewController.swift b/TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/ViewController.swift similarity index 100% rename from Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/ViewController.swift rename to TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveApp/ViewController.swift diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppTests/SimpleTransitiveAppTests.swift b/TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppTests/SimpleTransitiveAppTests.swift similarity index 100% rename from Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppTests/SimpleTransitiveAppTests.swift rename to TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppTests/SimpleTransitiveAppTests.swift diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppUITests/SimpleTransitiveAppUITests.swift b/TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppUITests/SimpleTransitiveAppUITests.swift similarity index 100% rename from Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppUITests/SimpleTransitiveAppUITests.swift rename to TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppUITests/SimpleTransitiveAppUITests.swift diff --git a/Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppUITests/SimpleTransitiveAppUITestsLaunchTests.swift b/TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppUITests/SimpleTransitiveAppUITestsLaunchTests.swift similarity index 100% rename from Tests/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppUITests/SimpleTransitiveAppUITestsLaunchTests.swift rename to TestAssets/transitive-project-and-components/SimpleTransitiveApp/SimpleTransitiveAppUITests/SimpleTransitiveAppUITestsLaunchTests.swift diff --git a/Tests/transitive-project-and-components/SwiftCalc/.gitignore b/TestAssets/transitive-project-and-components/SwiftCalc/.gitignore similarity index 100% rename from Tests/transitive-project-and-components/SwiftCalc/.gitignore rename to TestAssets/transitive-project-and-components/SwiftCalc/.gitignore diff --git a/Tests/transitive-project-and-components/SwiftCalc/Package.swift b/TestAssets/transitive-project-and-components/SwiftCalc/Package.swift similarity index 100% rename from Tests/transitive-project-and-components/SwiftCalc/Package.swift rename to TestAssets/transitive-project-and-components/SwiftCalc/Package.swift diff --git a/Tests/transitive-project-and-components/SwiftCalc/Sources/SwiftCalc/SwiftCalc.swift b/TestAssets/transitive-project-and-components/SwiftCalc/Sources/SwiftCalc/SwiftCalc.swift similarity index 100% rename from Tests/transitive-project-and-components/SwiftCalc/Sources/SwiftCalc/SwiftCalc.swift rename to TestAssets/transitive-project-and-components/SwiftCalc/Sources/SwiftCalc/SwiftCalc.swift diff --git a/Tests/transitive-project-and-components/SwiftCalc/Tests/SwiftCalcTests/SwiftCalcTests.swift b/TestAssets/transitive-project-and-components/SwiftCalc/Tests/SwiftCalcTests/SwiftCalcTests.swift similarity index 100% rename from Tests/transitive-project-and-components/SwiftCalc/Tests/SwiftCalcTests/SwiftCalcTests.swift rename to TestAssets/transitive-project-and-components/SwiftCalc/Tests/SwiftCalcTests/SwiftCalcTests.swift diff --git a/Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculation.xcodeproj/project.pbxproj b/TestAssets/transitive-project-and-components/SwiftCalculation/SwiftCalculation.xcodeproj/project.pbxproj similarity index 100% rename from Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculation.xcodeproj/project.pbxproj rename to TestAssets/transitive-project-and-components/SwiftCalculation/SwiftCalculation.xcodeproj/project.pbxproj diff --git a/Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculation/Calculation.swift b/TestAssets/transitive-project-and-components/SwiftCalculation/SwiftCalculation/Calculation.swift similarity index 100% rename from Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculation/Calculation.swift rename to TestAssets/transitive-project-and-components/SwiftCalculation/SwiftCalculation/Calculation.swift diff --git a/Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculation/SwiftCalculation.docc/SwiftCalculation.md b/TestAssets/transitive-project-and-components/SwiftCalculation/SwiftCalculation/SwiftCalculation.docc/SwiftCalculation.md similarity index 100% rename from Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculation/SwiftCalculation.docc/SwiftCalculation.md rename to TestAssets/transitive-project-and-components/SwiftCalculation/SwiftCalculation/SwiftCalculation.docc/SwiftCalculation.md diff --git a/Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculation/SwiftCalculation.h b/TestAssets/transitive-project-and-components/SwiftCalculation/SwiftCalculation/SwiftCalculation.h similarity index 100% rename from Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculation/SwiftCalculation.h rename to TestAssets/transitive-project-and-components/SwiftCalculation/SwiftCalculation/SwiftCalculation.h diff --git a/Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculationTests/SwiftCalculationTests.swift b/TestAssets/transitive-project-and-components/SwiftCalculation/SwiftCalculationTests/SwiftCalculationTests.swift similarity index 100% rename from Tests/transitive-project-and-components/SwiftCalculation/SwiftCalculationTests/SwiftCalculationTests.swift rename to TestAssets/transitive-project-and-components/SwiftCalculation/SwiftCalculationTests/SwiftCalculationTests.swift diff --git a/Tests/transitive-project-and-components/SwiftMath/.gitignore b/TestAssets/transitive-project-and-components/SwiftMath/.gitignore similarity index 100% rename from Tests/transitive-project-and-components/SwiftMath/.gitignore rename to TestAssets/transitive-project-and-components/SwiftMath/.gitignore diff --git a/Tests/transitive-project-and-components/SwiftMath/Package.swift b/TestAssets/transitive-project-and-components/SwiftMath/Package.swift similarity index 100% rename from Tests/transitive-project-and-components/SwiftMath/Package.swift rename to TestAssets/transitive-project-and-components/SwiftMath/Package.swift diff --git a/Tests/transitive-project-and-components/SwiftMath/Sources/SwiftMath/SwiftMath.swift b/TestAssets/transitive-project-and-components/SwiftMath/Sources/SwiftMath/SwiftMath.swift similarity index 100% rename from Tests/transitive-project-and-components/SwiftMath/Sources/SwiftMath/SwiftMath.swift rename to TestAssets/transitive-project-and-components/SwiftMath/Sources/SwiftMath/SwiftMath.swift diff --git a/Tests/transitive-project-and-components/SwiftMath/Tests/SwiftMathTests/SwiftMathTests.swift b/TestAssets/transitive-project-and-components/SwiftMath/Tests/SwiftMathTests/SwiftMathTests.swift similarity index 100% rename from Tests/transitive-project-and-components/SwiftMath/Tests/SwiftMathTests/SwiftMathTests.swift rename to TestAssets/transitive-project-and-components/SwiftMath/Tests/SwiftMathTests/SwiftMathTests.swift diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPM.xcworkspace/contents.xcworkspacedata b/TestAssets/transitive-project-and-components/TransitivePBXtoSPM.xcworkspace/contents.xcworkspacedata similarity index 100% rename from Tests/transitive-project-and-components/TransitivePBXtoSPM.xcworkspace/contents.xcworkspacedata rename to TestAssets/transitive-project-and-components/TransitivePBXtoSPM.xcworkspace/contents.xcworkspacedata diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPM.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/TestAssets/transitive-project-and-components/TransitivePBXtoSPM.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist similarity index 100% rename from Tests/transitive-project-and-components/TransitivePBXtoSPM.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist rename to TestAssets/transitive-project-and-components/TransitivePBXtoSPM.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.pbxproj b/TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.pbxproj similarity index 100% rename from Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.pbxproj rename to TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.pbxproj diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata similarity index 100% rename from Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata rename to TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist similarity index 100% rename from Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist rename to TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/AppDelegate.swift b/TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/AppDelegate.swift similarity index 100% rename from Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/AppDelegate.swift rename to TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/AppDelegate.swift diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/AccentColor.colorset/Contents.json b/TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/AccentColor.colorset/Contents.json similarity index 100% rename from Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/AccentColor.colorset/Contents.json rename to TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/AccentColor.colorset/Contents.json diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/AppIcon.appiconset/Contents.json b/TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/AppIcon.appiconset/Contents.json similarity index 100% rename from Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/AppIcon.appiconset/Contents.json rename to TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/AppIcon.appiconset/Contents.json diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/Contents.json b/TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/Contents.json similarity index 100% rename from Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/Contents.json rename to TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Assets.xcassets/Contents.json diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Base.lproj/LaunchScreen.storyboard b/TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Base.lproj/LaunchScreen.storyboard similarity index 100% rename from Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Base.lproj/LaunchScreen.storyboard rename to TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Base.lproj/LaunchScreen.storyboard diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Base.lproj/Main.storyboard b/TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Base.lproj/Main.storyboard similarity index 100% rename from Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Base.lproj/Main.storyboard rename to TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Base.lproj/Main.storyboard diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Info.plist b/TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Info.plist similarity index 100% rename from Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Info.plist rename to TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/Info.plist diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/SceneDelegate.swift b/TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/SceneDelegate.swift similarity index 100% rename from Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/SceneDelegate.swift rename to TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/SceneDelegate.swift diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/ViewController.swift b/TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/ViewController.swift similarity index 100% rename from Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/ViewController.swift rename to TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMApp/ViewController.swift diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppTests/TransitivePBXtoSPMAppTests.swift b/TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppTests/TransitivePBXtoSPMAppTests.swift similarity index 100% rename from Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppTests/TransitivePBXtoSPMAppTests.swift rename to TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppTests/TransitivePBXtoSPMAppTests.swift diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppUITests/TransitivePBXtoSPMAppUITests.swift b/TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppUITests/TransitivePBXtoSPMAppUITests.swift similarity index 100% rename from Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppUITests/TransitivePBXtoSPMAppUITests.swift rename to TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppUITests/TransitivePBXtoSPMAppUITests.swift diff --git a/Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppUITests/TransitivePBXtoSPMAppUITestsLaunchTests.swift b/TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppUITests/TransitivePBXtoSPMAppUITestsLaunchTests.swift similarity index 100% rename from Tests/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppUITests/TransitivePBXtoSPMAppUITestsLaunchTests.swift rename to TestAssets/transitive-project-and-components/TransitivePBXtoSPMApp/TransitivePBXtoSPMAppUITests/TransitivePBXtoSPMAppUITestsLaunchTests.swift diff --git a/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp.xcodeproj/project.pbxproj b/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp.xcodeproj/project.pbxproj similarity index 100% rename from Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp.xcodeproj/project.pbxproj rename to TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp.xcodeproj/project.pbxproj diff --git a/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/AppDelegate.swift b/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/AppDelegate.swift similarity index 100% rename from Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/AppDelegate.swift rename to TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/AppDelegate.swift diff --git a/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/AccentColor.colorset/Contents.json b/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/AccentColor.colorset/Contents.json similarity index 100% rename from Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/AccentColor.colorset/Contents.json rename to TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/AccentColor.colorset/Contents.json diff --git a/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/AppIcon.appiconset/Contents.json b/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/AppIcon.appiconset/Contents.json similarity index 100% rename from Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/AppIcon.appiconset/Contents.json rename to TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/AppIcon.appiconset/Contents.json diff --git a/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/Contents.json b/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/Contents.json similarity index 100% rename from Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/Contents.json rename to TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets/Contents.json diff --git a/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Base.lproj/LaunchScreen.storyboard b/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Base.lproj/LaunchScreen.storyboard similarity index 100% rename from Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Base.lproj/LaunchScreen.storyboard rename to TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Base.lproj/LaunchScreen.storyboard diff --git a/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Base.lproj/Main.storyboard b/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Base.lproj/Main.storyboard similarity index 100% rename from Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Base.lproj/Main.storyboard rename to TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Base.lproj/Main.storyboard diff --git a/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Info.plist b/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Info.plist similarity index 100% rename from Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Info.plist rename to TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Info.plist diff --git a/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/SceneDelegate.swift b/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/SceneDelegate.swift similarity index 100% rename from Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/SceneDelegate.swift rename to TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/SceneDelegate.swift diff --git a/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/ViewController.swift b/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/ViewController.swift similarity index 100% rename from Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/ViewController.swift rename to TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/ViewController.swift diff --git a/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppTests/TransitiveTestAppTests.swift b/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppTests/TransitiveTestAppTests.swift similarity index 100% rename from Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppTests/TransitiveTestAppTests.swift rename to TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppTests/TransitiveTestAppTests.swift diff --git a/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppUITests/TransitiveTestAppUITests.swift b/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppUITests/TransitiveTestAppUITests.swift similarity index 100% rename from Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppUITests/TransitiveTestAppUITests.swift rename to TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppUITests/TransitiveTestAppUITests.swift diff --git a/Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppUITests/TransitiveTestAppUITestsLaunchTests.swift b/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppUITests/TransitiveTestAppUITestsLaunchTests.swift similarity index 100% rename from Tests/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppUITests/TransitiveTestAppUITestsLaunchTests.swift rename to TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestAppUITests/TransitiveTestAppUITestsLaunchTests.swift