Skip to content

Commit

Permalink
Remove remaining spaces in folders
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Martin committed Sep 20, 2024
1 parent b45a3d8 commit 615592a
Show file tree
Hide file tree
Showing 93 changed files with 65 additions and 198 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@
containerPortal = 6282C64E2C9CE3F70040DCDB /* KIF.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = EB60ECC1177F8C83005A041A;
remoteInfo = "Test Host";
remoteInfo = "TestHost";
};
6282C6592C9CE3F70040DCDB /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6282C64E2C9CE3F70040DCDB /* KIF.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = EABD46CD1857A0F300A5F081;
remoteInfo = "KIF Tests";
remoteInfo = "KIFTests";
};
62F81AFB1EBBD038009B2400 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
Expand Down Expand Up @@ -113,8 +113,8 @@
isa = PBXGroup;
children = (
6282C6562C9CE3F70040DCDB /* libKIF.a */,
6282C6582C9CE3F70040DCDB /* Test Host.app */,
6282C65A2C9CE3F70040DCDB /* KIF Tests - XCTest.xctest */,
6282C6582C9CE3F70040DCDB /* TestHost.app */,
6282C65A2C9CE3F70040DCDB /* KIFTests - XCTest.xctest */,
);
name = Products;
sourceTree = "<group>";
Expand Down Expand Up @@ -284,17 +284,17 @@
remoteRef = 6282C6552C9CE3F70040DCDB /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6282C6582C9CE3F70040DCDB /* Test Host.app */ = {
6282C6582C9CE3F70040DCDB /* TestHost.app */ = {
isa = PBXReferenceProxy;
fileType = wrapper.application;
path = "Test Host.app";
path = "TestHost.app";
remoteRef = 6282C6572C9CE3F70040DCDB /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6282C65A2C9CE3F70040DCDB /* KIF Tests - XCTest.xctest */ = {
6282C65A2C9CE3F70040DCDB /* KIFTests - XCTest.xctest */ = {
isa = PBXReferenceProxy;
fileType = wrapper.cfbundle;
path = "KIF Tests - XCTest.xctest";
path = "KIFTests - XCTest.xctest";
remoteRef = 6282C6592C9CE3F70040DCDB /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
Expand Down
8 changes: 0 additions & 8 deletions KIF Tests/KIF Tests-Prefix.pch

This file was deleted.

133 changes: 45 additions & 88 deletions KIF.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions KIF.xcodeproj/xcshareddata/xcschemes/KIF.xcscheme
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "EABD46AD1857A0F300A5F081"
BuildableName = "KIF Tests - XCTest.xctest"
BlueprintName = "KIF Tests"
BuildableName = "KIFTests - XCTest.xctest"
BlueprintName = "KIFTests"
ReferencedContainer = "container:KIF.xcodeproj">
</BuildableReference>
</TestableReference>
Expand Down
80 changes: 0 additions & 80 deletions KIF.xcodeproj/xcshareddata/xcschemes/KIFFramework.xcscheme

This file was deleted.

2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ let package = Package(
.testTarget(
name: "KIFTests",
dependencies: ["KIF"],
path: "./KIF Tests",
path: "./Tests",
cSettings: [.headerSearchPath("../Sources/KIF/")] // allow to look a "private" headers
),
]
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ You can easily run a single KIF test with the Test Navigator or kick off nightly
See KIF in Action
-----------------

KIF uses techniques described below to validate its internal functionality. You can see a test suite that exercises its entire functionality by simply building and testing the KIF scheme with ⌘U. Look at the tests in the "KIF Tests" group for ideas on how to build your own tests.
KIF uses techniques described below to validate its internal functionality. You can see a test suite that exercises its entire functionality by simply building and testing the KIF scheme with ⌘U. Look at the tests in the "Tests" group for ideas on how to build your own tests.

Installation (with CocoaPods)
-----------------------------
Expand Down Expand Up @@ -113,13 +113,13 @@ Read **Final Test Target Configurations** below for the final details on getting
Installing Accessibility Identifier Tests
-----------------------------------------

Normally you identify a UI element via its accessibility label so that KIF simulates the interactions of a real user as closely as possible. In some cases, however, you may have to use accessibility identifiers, which are not exposed to users. If using CocoaPods, install the additional identifier-based KIF tests via the Identifier CocoaPods subspec:
Normally you identify a UI element via its accessibility label so that KIF simulates the interactions of a real user as closely as possible. In some cases, however, you may have to use accessibility identifiers, which are not exposed to users. If using CocoaPods, install the additional identifier-based Tests via the Identifier CocoaPods subspec:

```
pod 'KIF/IdentifierTests'
```

If not using CocoaPods, the identifier-based KIF tests can be added by including "KIFUITestActor-IdentifierTests.h".
If not using CocoaPods, the identifier-based Tests can be added by including "KIFUITestActor-IdentifierTests.h".

Final Test Target Configurations
--------------------------------
Expand Down Expand Up @@ -221,7 +221,7 @@ Everything should now be configured. When you run the integration tests using th
Use with other testing frameworks
---------------------------------
`KIFTestCase` is not necessary for running KIF tests. Tests can run directly in `XCTestCase` or any subclass. The basic requirement is that when you call `tester` or `system`, `self` must be an instance of `XCTestCase` and you must call `KIFEnableAccessibility` in `setUp`.
`KIFTestCase` is not necessary for running Tests. Tests can run directly in `XCTestCase` or any subclass. The basic requirement is that when you call `tester` or `system`, `self` must be an instance of `XCTestCase` and you must call `KIFEnableAccessibility` in `setUp`.
For example, the following [Specta](https://github.com/specta/specta) test works without any changes to KIF or Specta:
Expand Down Expand Up @@ -289,7 +289,7 @@ Troubleshooting

### Simulator launches but app doesn't appear, steps time out after 10 seconds

This issue occurs when XCTest does not have a valid test host. Reread the instructions above with regards to the "Bundle Loader" and "Test Host" settings. You may have missed something.
This issue occurs when XCTest does not have a valid Test Host. Reread the instructions above with regards to the "Bundle Loader" and "Test Host" settings. You may have missed something.

### Step fails because a view cannot be found

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// UIAccessibilityCustomAction+KIFAdditions.m
// KIF Tests
// KIF
//
// Created by Alex Odawa on 09/07/2024.
//
Expand Down
2 changes: 0 additions & 2 deletions Test Host/en.lproj/InfoPlist.strings

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// OffscreenViewController.m
// Test Host
// TestHost
//
// Created by Steve Sun on 2023-03-28.
//
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Prefix header for all source files of the 'Test Host' target in the 'Test Host' project
// Prefix header for all source files of the 'TestHost' target in the 'KIF' project
//

#import <Availability.h>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion Test Host/main.m → TestHost/main.m
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// main.m
// Test Host
// TestHost
//
// Created by Brian Nickel on 6/29/13.
//
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 615592a

Please sign in to comment.