Skip to content

Commit 19cc32e

Browse files
author
Chris Pilcher
committed
Enabling binary search tree tests. Removed unused xcodeproj file.
1 parent b55c49f commit 19cc32e

File tree

4 files changed

+23
-23
lines changed

4 files changed

+23
-23
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ script:
1111
# - xcodebuild test -project ./All-Pairs\ Shortest\ Paths/APSP/APSP.xcodeproj -scheme APSPTests
1212
# - xcodebuild test -project ./Array2D/Tests/Tests.xcodeproj -scheme Tests
1313
- xcodebuild test -project ./AVL\ Tree/Tests/Tests.xcodeproj -scheme Tests
14-
# - xcodebuild test -project ./Binary\ Search/Tests/Tests.xcodeproj -scheme Tests
14+
- xcodebuild test -project ./Binary\ Search/Tests/Tests.xcodeproj -scheme Tests
1515
# - xcodebuild test -project ./Binary\ Search\ Tree/Solution\ 1/Tests/Tests.xcodeproj -scheme Tests
1616
# - xcodebuild test -project ./Bloom\ Filter/Tests/Tests.xcodeproj -scheme Tests
1717
# - xcodebuild test -project ./Bounded\ Priority\ Queue/Tests/Tests.xcodeproj -scheme Tests

Binary Search/Tests/BinarySearchTests.xcodeproj/project.pbxproj Binary Search/Tests/Tests.xcodeproj/project.pbxproj

+10-10
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
/* End PBXBuildFile section */
1313

1414
/* Begin PBXFileReference section */
15-
7B2BBC801C779D720067B71D /* BinarySearchTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BinarySearchTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
15+
7B2BBC801C779D720067B71D /* Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
1616
7B2BBC941C779E7B0067B71D /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = SOURCE_ROOT; };
1717
7B80C3CD1C77A256003CECC7 /* BinarySearchTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BinarySearchTests.swift; sourceTree = SOURCE_ROOT; };
1818
7B80C3CF1C77A263003CECC7 /* BinarySearch.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = BinarySearch.swift; path = ../BinarySearch.swift; sourceTree = SOURCE_ROOT; };
@@ -40,7 +40,7 @@
4040
7B2BBC721C779D710067B71D /* Products */ = {
4141
isa = PBXGroup;
4242
children = (
43-
7B2BBC801C779D720067B71D /* BinarySearchTests.xctest */,
43+
7B2BBC801C779D720067B71D /* Tests.xctest */,
4444
);
4545
name = Products;
4646
sourceTree = "<group>";
@@ -59,9 +59,9 @@
5959
/* End PBXGroup section */
6060

6161
/* Begin PBXNativeTarget section */
62-
7B2BBC7F1C779D720067B71D /* BinarySearchTests */ = {
62+
7B2BBC7F1C779D720067B71D /* Tests */ = {
6363
isa = PBXNativeTarget;
64-
buildConfigurationList = 7B2BBC8C1C779D720067B71D /* Build configuration list for PBXNativeTarget "BinarySearchTests" */;
64+
buildConfigurationList = 7B2BBC8C1C779D720067B71D /* Build configuration list for PBXNativeTarget "Tests" */;
6565
buildPhases = (
6666
7B2BBC7C1C779D720067B71D /* Sources */,
6767
7B2BBC7D1C779D720067B71D /* Frameworks */,
@@ -71,9 +71,9 @@
7171
);
7272
dependencies = (
7373
);
74-
name = BinarySearchTests;
74+
name = Tests;
7575
productName = TestsTests;
76-
productReference = 7B2BBC801C779D720067B71D /* BinarySearchTests.xctest */;
76+
productReference = 7B2BBC801C779D720067B71D /* Tests.xctest */;
7777
productType = "com.apple.product-type.bundle.unit-test";
7878
};
7979
/* End PBXNativeTarget section */
@@ -92,7 +92,7 @@
9292
};
9393
};
9494
};
95-
buildConfigurationList = 7B2BBC6C1C779D710067B71D /* Build configuration list for PBXProject "BinarySearchTests" */;
95+
buildConfigurationList = 7B2BBC6C1C779D710067B71D /* Build configuration list for PBXProject "Tests" */;
9696
compatibilityVersion = "Xcode 3.2";
9797
developmentRegion = English;
9898
hasScannedForEncodings = 0;
@@ -105,7 +105,7 @@
105105
projectDirPath = "";
106106
projectRoot = "";
107107
targets = (
108-
7B2BBC7F1C779D720067B71D /* BinarySearchTests */,
108+
7B2BBC7F1C779D720067B71D /* Tests */,
109109
);
110110
};
111111
/* End PBXProject section */
@@ -245,7 +245,7 @@
245245
/* End XCBuildConfiguration section */
246246

247247
/* Begin XCConfigurationList section */
248-
7B2BBC6C1C779D710067B71D /* Build configuration list for PBXProject "BinarySearchTests" */ = {
248+
7B2BBC6C1C779D710067B71D /* Build configuration list for PBXProject "Tests" */ = {
249249
isa = XCConfigurationList;
250250
buildConfigurations = (
251251
7B2BBC871C779D720067B71D /* Debug */,
@@ -254,7 +254,7 @@
254254
defaultConfigurationIsVisible = 0;
255255
defaultConfigurationName = Release;
256256
};
257-
7B2BBC8C1C779D720067B71D /* Build configuration list for PBXNativeTarget "BinarySearchTests" */ = {
257+
7B2BBC8C1C779D720067B71D /* Build configuration list for PBXNativeTarget "Tests" */ = {
258258
isa = XCConfigurationList;
259259
buildConfigurations = (
260260
7B2BBC8D1C779D720067B71D /* Debug */,

Binary Search/Tests/BinarySearchTests.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme Binary Search/Tests/Tests.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme

+12-12
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<BuildableReference
1616
BuildableIdentifier = "primary"
1717
BlueprintIdentifier = "7B2BBC7F1C779D720067B71D"
18-
BuildableName = "BinarySearchTests.xctest"
19-
BlueprintName = "BinarySearchTests"
20-
ReferencedContainer = "container:BinarySearchTests.xcodeproj">
18+
BuildableName = "Tests.xctest"
19+
BlueprintName = "Tests"
20+
ReferencedContainer = "container:Tests.xcodeproj">
2121
</BuildableReference>
2222
</BuildActionEntry>
2323
</BuildActionEntries>
@@ -33,9 +33,9 @@
3333
<BuildableReference
3434
BuildableIdentifier = "primary"
3535
BlueprintIdentifier = "7B2BBC7F1C779D720067B71D"
36-
BuildableName = "BinarySearchTests.xctest"
37-
BlueprintName = "BinarySearchTests"
38-
ReferencedContainer = "container:BinarySearchTests.xcodeproj">
36+
BuildableName = "Tests.xctest"
37+
BlueprintName = "Tests"
38+
ReferencedContainer = "container:Tests.xcodeproj">
3939
</BuildableReference>
4040
</TestableReference>
4141
</Testables>
@@ -56,9 +56,9 @@
5656
<BuildableReference
5757
BuildableIdentifier = "primary"
5858
BlueprintIdentifier = "7B2BBC7F1C779D720067B71D"
59-
BuildableName = "BinarySearchTests.xctest"
60-
BlueprintName = "BinarySearchTests"
61-
ReferencedContainer = "container:BinarySearchTests.xcodeproj">
59+
BuildableName = "Tests.xctest"
60+
BlueprintName = "Tests"
61+
ReferencedContainer = "container:Tests.xcodeproj">
6262
</BuildableReference>
6363
</MacroExpansion>
6464
<AdditionalOptions>
@@ -74,9 +74,9 @@
7474
<BuildableReference
7575
BuildableIdentifier = "primary"
7676
BlueprintIdentifier = "7B2BBC7F1C779D720067B71D"
77-
BuildableName = "BinarySearchTests.xctest"
78-
BlueprintName = "BinarySearchTests"
79-
ReferencedContainer = "container:BinarySearchTests.xcodeproj">
77+
BuildableName = "Tests.xctest"
78+
BlueprintName = "Tests"
79+
ReferencedContainer = "container:Tests.xcodeproj">
8080
</BuildableReference>
8181
</MacroExpansion>
8282
</ProfileAction>

0 commit comments

Comments
 (0)