├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── .xcode-selective-testing.yml ├── ACKNOWLEDGEMENTS ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Package.resolved ├── Package.swift ├── Plugins └── SelectiveTestingPlugin │ └── SelectiveTestingPlugin.swift ├── README.md ├── Sources ├── DependencyCalculator │ ├── ConcurrentMap.swift │ ├── DependencyCalculator.swift │ ├── DependencyGraph.swift │ └── PackageMetadata.swift ├── Git │ ├── Git+Changeset.swift │ └── Git.swift ├── SelectiveTestShell │ ├── Shell.swift │ ├── String+Error.swift │ └── String+Shell.swift ├── SelectiveTestingCore │ ├── Config.swift │ ├── DependencyGraph+Visualization.swift │ └── SelectiveTestingTool.swift ├── TestConfigurator │ ├── TestConfigurator.swift │ └── xctestplanner │ │ └── Core │ │ ├── Entity │ │ └── TestPlanModel.swift │ │ └── Helper │ │ └── TestPlanHelper.swift ├── Workspace │ ├── DependencyGraph.swift │ ├── Sequence+Extensions.swift │ ├── Target.swift │ ├── WorkspaceInfo.swift │ └── XCWorkspace+Projects.swift └── xcode-selective-test │ └── SelectiveTesting.swift ├── Tests ├── DependencyCalculatorTests │ ├── DependencyCalculatorTests.swift │ ├── ExamplePackages │ │ ├── CrossDependency │ │ │ └── Package.swift │ │ ├── PackageAndWorkspace │ │ │ ├── Package.swift │ │ │ └── Workspace.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ └── Simple │ │ │ └── Package.swift │ └── PackageMetadataTests.swift └── SelectiveTestingTests │ ├── ExampleProject │ ├── ExampleLibrary │ │ ├── ExampleLibrary.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── ExampleLibrary │ │ │ ├── ExampleLibrary.docc │ │ │ │ └── ExampleLibrary.md │ │ │ ├── ExampleLibrary.h │ │ │ └── ExampleLibrary.swift │ │ └── ExampleLibraryTests │ │ │ └── ExampleLibraryTests.swift │ ├── ExamplePackage │ │ ├── .gitignore │ │ ├── Binary.xcframework │ │ │ └── Info.plist │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── ExamplePackage │ │ │ │ └── ExamplePackage.swift │ │ └── Tests │ │ │ ├── ExamplePackageTests │ │ │ └── ExamplePackageTests.swift │ │ │ └── Subtests │ │ │ └── Test.swift │ ├── ExampleProject.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── ExampleProject.xcscheme │ ├── ExampleProject.xctestplan │ ├── ExampleProject │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── Example.xib │ │ ├── DeepFolder │ │ │ └── Path │ │ │ │ └── FolderContentView.swift │ │ ├── DeepGroup │ │ │ └── Path │ │ │ │ └── GroupContentView.swift │ │ ├── ExampleProjectApp.swift │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ └── en.lproj │ │ │ └── Example.strings │ ├── ExampleProject2.xctestplan │ ├── ExampleProjectTests │ │ └── ExampleProjectTests.swift │ ├── ExampleProjectUITests │ │ ├── ExampleProjectUITests.swift │ │ └── ExampleProjectUITestsLaunchTests.swift │ ├── ExampleSubpackage │ │ ├── .gitignore │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── ExampleSubpackage │ │ │ │ └── ExampleSubpackage.swift │ │ └── Tests │ │ │ └── ExampleSubpackageTests │ │ │ └── ExampleSubpackageTests.swift │ ├── ExampleWorkspace.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── ExmapleTargetLibrary │ │ ├── ExampleTargetLibrary.swift │ │ ├── ExmapleTargetLibrary.docc │ │ │ └── ExmapleTargetLibrary.md │ │ └── ExmapleTargetLibrary.h │ ├── ExmapleTargetLibraryTests │ │ └── ExmapleTargetLibraryTests.swift │ └── Group │ │ ├── ExampleProjectInGroup.xcodeproj │ │ └── project.pbxproj │ │ └── ExampleProjectInGroup │ │ └── ExampleProjectInGroup.h │ ├── IntegrationTestTool.swift │ ├── SelectiveTestingConfigTests.swift │ ├── SelectiveTestingPackagesTests.swift │ ├── SelectiveTestingPerformanceTests.swift │ ├── SelectiveTestingProjectTests.swift │ ├── SelectiveTestingWorkspaceTests.swift │ ├── TestPlanCodableTests.swift │ └── TestPlanModelTests.swift ├── install.sh ├── selective-testing-config-example.yml ├── spm-artifact-bundle-info.template └── spm-artifact-bundle.sh /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/.gitignore -------------------------------------------------------------------------------- /.xcode-selective-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/.xcode-selective-testing.yml -------------------------------------------------------------------------------- /ACKNOWLEDGEMENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/ACKNOWLEDGEMENTS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Package.swift -------------------------------------------------------------------------------- /Plugins/SelectiveTestingPlugin/SelectiveTestingPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Plugins/SelectiveTestingPlugin/SelectiveTestingPlugin.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/README.md -------------------------------------------------------------------------------- /Sources/DependencyCalculator/ConcurrentMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Sources/DependencyCalculator/ConcurrentMap.swift -------------------------------------------------------------------------------- /Sources/DependencyCalculator/DependencyCalculator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Sources/DependencyCalculator/DependencyCalculator.swift -------------------------------------------------------------------------------- /Sources/DependencyCalculator/DependencyGraph.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Sources/DependencyCalculator/DependencyGraph.swift -------------------------------------------------------------------------------- /Sources/DependencyCalculator/PackageMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Sources/DependencyCalculator/PackageMetadata.swift -------------------------------------------------------------------------------- /Sources/Git/Git+Changeset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Sources/Git/Git+Changeset.swift -------------------------------------------------------------------------------- /Sources/Git/Git.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Sources/Git/Git.swift -------------------------------------------------------------------------------- /Sources/SelectiveTestShell/Shell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Sources/SelectiveTestShell/Shell.swift -------------------------------------------------------------------------------- /Sources/SelectiveTestShell/String+Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Sources/SelectiveTestShell/String+Error.swift -------------------------------------------------------------------------------- /Sources/SelectiveTestShell/String+Shell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Sources/SelectiveTestShell/String+Shell.swift -------------------------------------------------------------------------------- /Sources/SelectiveTestingCore/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Sources/SelectiveTestingCore/Config.swift -------------------------------------------------------------------------------- /Sources/SelectiveTestingCore/DependencyGraph+Visualization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Sources/SelectiveTestingCore/DependencyGraph+Visualization.swift -------------------------------------------------------------------------------- /Sources/SelectiveTestingCore/SelectiveTestingTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Sources/SelectiveTestingCore/SelectiveTestingTool.swift -------------------------------------------------------------------------------- /Sources/TestConfigurator/TestConfigurator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Sources/TestConfigurator/TestConfigurator.swift -------------------------------------------------------------------------------- /Sources/TestConfigurator/xctestplanner/Core/Entity/TestPlanModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Sources/TestConfigurator/xctestplanner/Core/Entity/TestPlanModel.swift -------------------------------------------------------------------------------- /Sources/TestConfigurator/xctestplanner/Core/Helper/TestPlanHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Sources/TestConfigurator/xctestplanner/Core/Helper/TestPlanHelper.swift -------------------------------------------------------------------------------- /Sources/Workspace/DependencyGraph.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Sources/Workspace/DependencyGraph.swift -------------------------------------------------------------------------------- /Sources/Workspace/Sequence+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Sources/Workspace/Sequence+Extensions.swift -------------------------------------------------------------------------------- /Sources/Workspace/Target.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Sources/Workspace/Target.swift -------------------------------------------------------------------------------- /Sources/Workspace/WorkspaceInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Sources/Workspace/WorkspaceInfo.swift -------------------------------------------------------------------------------- /Sources/Workspace/XCWorkspace+Projects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Sources/Workspace/XCWorkspace+Projects.swift -------------------------------------------------------------------------------- /Sources/xcode-selective-test/SelectiveTesting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Sources/xcode-selective-test/SelectiveTesting.swift -------------------------------------------------------------------------------- /Tests/DependencyCalculatorTests/DependencyCalculatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/DependencyCalculatorTests/DependencyCalculatorTests.swift -------------------------------------------------------------------------------- /Tests/DependencyCalculatorTests/ExamplePackages/CrossDependency/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/DependencyCalculatorTests/ExamplePackages/CrossDependency/Package.swift -------------------------------------------------------------------------------- /Tests/DependencyCalculatorTests/ExamplePackages/PackageAndWorkspace/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/DependencyCalculatorTests/ExamplePackages/PackageAndWorkspace/Package.swift -------------------------------------------------------------------------------- /Tests/DependencyCalculatorTests/ExamplePackages/PackageAndWorkspace/Workspace.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/DependencyCalculatorTests/ExamplePackages/PackageAndWorkspace/Workspace.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Tests/DependencyCalculatorTests/ExamplePackages/Simple/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/DependencyCalculatorTests/ExamplePackages/Simple/Package.swift -------------------------------------------------------------------------------- /Tests/DependencyCalculatorTests/PackageMetadataTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/DependencyCalculatorTests/PackageMetadataTests.swift -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleLibrary/ExampleLibrary.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleLibrary/ExampleLibrary.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleLibrary/ExampleLibrary.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleLibrary/ExampleLibrary.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleLibrary/ExampleLibrary.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleLibrary/ExampleLibrary.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleLibrary/ExampleLibrary/ExampleLibrary.docc/ExampleLibrary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleLibrary/ExampleLibrary/ExampleLibrary.docc/ExampleLibrary.md -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleLibrary/ExampleLibrary/ExampleLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleLibrary/ExampleLibrary/ExampleLibrary.h -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleLibrary/ExampleLibrary/ExampleLibrary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleLibrary/ExampleLibrary/ExampleLibrary.swift -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleLibrary/ExampleLibraryTests/ExampleLibraryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleLibrary/ExampleLibraryTests/ExampleLibraryTests.swift -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExamplePackage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExamplePackage/.gitignore -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExamplePackage/Binary.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExamplePackage/Binary.xcframework/Info.plist -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExamplePackage/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExamplePackage/Package.swift -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExamplePackage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExamplePackage/README.md -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExamplePackage/Sources/ExamplePackage/ExamplePackage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExamplePackage/Sources/ExamplePackage/ExamplePackage.swift -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExamplePackage/Tests/ExamplePackageTests/ExamplePackageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExamplePackage/Tests/ExamplePackageTests/ExamplePackageTests.swift -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExamplePackage/Tests/Subtests/Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExamplePackage/Tests/Subtests/Test.swift -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleProject.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleProject.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleProject.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleProject.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleProject.xcodeproj/xcshareddata/xcschemes/ExampleProject.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleProject.xcodeproj/xcshareddata/xcschemes/ExampleProject.xcscheme -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleProject.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleProject.xctestplan -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleProject/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleProject/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleProject/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleProject/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleProject/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleProject/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleProject/Base.lproj/Example.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleProject/Base.lproj/Example.xib -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleProject/DeepFolder/Path/FolderContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleProject/DeepFolder/Path/FolderContentView.swift -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleProject/DeepGroup/Path/GroupContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleProject/DeepGroup/Path/GroupContentView.swift -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleProject/ExampleProjectApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleProject/ExampleProjectApp.swift -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleProject/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleProject/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleProject/en.lproj/Example.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleProject2.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleProject2.xctestplan -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleProjectTests/ExampleProjectTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleProjectTests/ExampleProjectTests.swift -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleProjectUITests/ExampleProjectUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleProjectUITests/ExampleProjectUITests.swift -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleProjectUITests/ExampleProjectUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleProjectUITests/ExampleProjectUITestsLaunchTests.swift -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleSubpackage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleSubpackage/.gitignore -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleSubpackage/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleSubpackage/Package.swift -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleSubpackage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleSubpackage/README.md -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleSubpackage/Sources/ExampleSubpackage/ExampleSubpackage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleSubpackage/Sources/ExampleSubpackage/ExampleSubpackage.swift -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleSubpackage/Tests/ExampleSubpackageTests/ExampleSubpackageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleSubpackage/Tests/ExampleSubpackageTests/ExampleSubpackageTests.swift -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleWorkspace.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleWorkspace.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExampleWorkspace.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExampleWorkspace.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExmapleTargetLibrary/ExampleTargetLibrary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExmapleTargetLibrary/ExampleTargetLibrary.swift -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExmapleTargetLibrary/ExmapleTargetLibrary.docc/ExmapleTargetLibrary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExmapleTargetLibrary/ExmapleTargetLibrary.docc/ExmapleTargetLibrary.md -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExmapleTargetLibrary/ExmapleTargetLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExmapleTargetLibrary/ExmapleTargetLibrary.h -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/ExmapleTargetLibraryTests/ExmapleTargetLibraryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/ExmapleTargetLibraryTests/ExmapleTargetLibraryTests.swift -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/Group/ExampleProjectInGroup.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/Group/ExampleProjectInGroup.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/ExampleProject/Group/ExampleProjectInGroup/ExampleProjectInGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/ExampleProject/Group/ExampleProjectInGroup/ExampleProjectInGroup.h -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/IntegrationTestTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/IntegrationTestTool.swift -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/SelectiveTestingConfigTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/SelectiveTestingConfigTests.swift -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/SelectiveTestingPackagesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/SelectiveTestingPackagesTests.swift -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/SelectiveTestingPerformanceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/SelectiveTestingPerformanceTests.swift -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/SelectiveTestingProjectTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/SelectiveTestingProjectTests.swift -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/SelectiveTestingWorkspaceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/SelectiveTestingWorkspaceTests.swift -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/TestPlanCodableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/TestPlanCodableTests.swift -------------------------------------------------------------------------------- /Tests/SelectiveTestingTests/TestPlanModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/Tests/SelectiveTestingTests/TestPlanModelTests.swift -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/install.sh -------------------------------------------------------------------------------- /selective-testing-config-example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/selective-testing-config-example.yml -------------------------------------------------------------------------------- /spm-artifact-bundle-info.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/spm-artifact-bundle-info.template -------------------------------------------------------------------------------- /spm-artifact-bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeger/XcodeSelectiveTesting/HEAD/spm-artifact-bundle.sh --------------------------------------------------------------------------------