slather 2.3.0 → 2.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -1
- data/CHANGELOG.md +26 -0
- data/README.md +2 -2
- data/lib/slather/coverage_service/coveralls.rb +35 -0
- data/lib/slather/coverage_service/html_output.rb +3 -4
- data/lib/slather/profdata_coverage_file.rb +74 -34
- data/lib/slather/project.rb +40 -16
- data/lib/slather/version.rb +1 -1
- data/slather.gemspec +1 -1
- data/spec/fixtures/fixtures.xcodeproj/project.pbxproj +113 -4
- data/spec/fixtures/fixtures.xcodeproj/xcshareddata/xcschemes/aggregateFixturesTests.xcscheme +109 -0
- data/spec/fixtures/fixtures.xcodeproj/xcshareddata/xcschemes/fixturesTestsSecond.xcscheme +99 -0
- data/spec/fixtures/fixtures/fixtures.m +1 -1
- data/spec/fixtures/fixturesTests/fixturesTestsSecond.m +21 -0
- data/spec/fixtures/fixturesTests/{peekaviewTests.m → peekaviewTests/360/237/222/243.m} +1 -1
- data/spec/fixtures/fixtures_html/fixtures.m.html +1 -1
- data/spec/fixtures/fixtures_html/index.html +1 -1
- data/spec/fixtures/fixtures_html/{peekaviewTests.m.html → peekaviewTests/360/237/222/243.m.html} +4 -4
- data/spec/fixtures/gutter.json +1 -1
- data/spec/slather/coverage_file_spec.rb +1 -1
- data/spec/slather/coverage_service/coveralls_spec.rb +39 -0
- data/spec/slather/coverage_service/html_output_spec.rb +24 -24
- data/spec/slather/coverage_service/simple_output_spec.rb +2 -2
- data/spec/slather/profdata_coverage_spec.rb +27 -14
- data/spec/slather/project_spec.rb +11 -1
- data/spec/spec_helper.rb +1 -1
- metadata +50 -45
data/slather.gemspec
CHANGED
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
|
|
29
29
|
|
30
30
|
spec.add_dependency "clamp", "~> 0.6"
|
31
31
|
spec.add_dependency "xcodeproj", "< 2.0.0", ">= 0.20"
|
32
|
-
spec.add_dependency "nokogiri", "~> 1.6
|
32
|
+
spec.add_dependency "nokogiri", "~> 1.6"
|
33
33
|
|
34
34
|
## Version 5 needs Ruby 2.2, so we specify an upper bound to stay compatible with system ruby
|
35
35
|
spec.add_runtime_dependency 'activesupport', '>= 4.0.2', '< 5'
|
@@ -15,6 +15,11 @@
|
|
15
15
|
3773307C1CC42A58005EAF65 /* fixturesTwo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3773307B1CC42A58005EAF65 /* fixturesTwo.h */; };
|
16
16
|
3773307E1CC42A58005EAF65 /* fixturesTwo.m in Sources */ = {isa = PBXBuildFile; fileRef = 3773307D1CC42A58005EAF65 /* fixturesTwo.m */; };
|
17
17
|
377330821CC42ABF005EAF65 /* libfixturesTwo.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 377330791CC42A58005EAF65 /* libfixturesTwo.dylib */; };
|
18
|
+
8554482F1E461FAF0032518E /* fixturesTestsSecond.m in Sources */ = {isa = PBXBuildFile; fileRef = 8554482E1E461FAF0032518E /* fixturesTestsSecond.m */; };
|
19
|
+
85AE69041E45F0F900DA2D47 /* libfixtures.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C9A202D195965F10013B6B3 /* libfixtures.a */; };
|
20
|
+
85AE69051E45F0F900DA2D47 /* libfixturesTwo.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 377330791CC42A58005EAF65 /* libfixturesTwo.dylib */; };
|
21
|
+
85AE69061E45F0F900DA2D47 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C9A2030195965F10013B6B3 /* Cocoa.framework */; };
|
22
|
+
85AE69081E45F0F900DA2D47 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 8C9A204A195965F10013B6B3 /* InfoPlist.strings */; };
|
18
23
|
8C0F0B401ACF43A300793B7D /* fixtures_m.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C0F0B3E1ACF43A300793B7D /* fixtures_m.h */; };
|
19
24
|
8C0F0B411ACF43A300793B7D /* fixtures_m.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C0F0B3F1ACF43A300793B7D /* fixtures_m.m */; };
|
20
25
|
8C0F0B441ACF44E000793B7D /* fixtures_cpp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C0F0B421ACF44E000793B7D /* fixtures_cpp.cpp */; };
|
@@ -23,7 +28,7 @@
|
|
23
28
|
8C0F0B491ACF44F200793B7D /* fixtures_mm.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8C0F0B471ACF44F200793B7D /* fixtures_mm.mm */; };
|
24
29
|
8C52AEF7195AAE32008A882A /* peekaview.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C52AEF5195AAE32008A882A /* peekaview.h */; };
|
25
30
|
8C52AEF8195AAE33008A882A /* peekaview.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C52AEF6195AAE32008A882A /* peekaview.m */; };
|
26
|
-
8C52AEFA195AAE70008A882A /* peekaviewTests
|
31
|
+
8C52AEFA195AAE70008A882A /* peekaviewTests💣.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C52AEF9195AAE70008A882A /* peekaviewTests💣.m */; };
|
27
32
|
8C9A2031195965F10013B6B3 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C9A2030195965F10013B6B3 /* Cocoa.framework */; };
|
28
33
|
8C9A203B195965F10013B6B3 /* fixtures.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C9A203A195965F10013B6B3 /* fixtures.m */; };
|
29
34
|
8C9A2043195965F10013B6B3 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C9A2030195965F10013B6B3 /* Cocoa.framework */; };
|
@@ -33,6 +38,13 @@
|
|
33
38
|
/* End PBXBuildFile section */
|
34
39
|
|
35
40
|
/* Begin PBXContainerItemProxy section */
|
41
|
+
85AE68FE1E45F0F900DA2D47 /* PBXContainerItemProxy */ = {
|
42
|
+
isa = PBXContainerItemProxy;
|
43
|
+
containerPortal = 8C9A2025195965F00013B6B3 /* Project object */;
|
44
|
+
proxyType = 1;
|
45
|
+
remoteGlobalIDString = 8C9A202C195965F10013B6B3;
|
46
|
+
remoteInfo = fixtures;
|
47
|
+
};
|
36
48
|
8C9A2044195965F10013B6B3 /* PBXContainerItemProxy */ = {
|
37
49
|
isa = PBXContainerItemProxy;
|
38
50
|
containerPortal = 8C9A2025195965F00013B6B3 /* Project object */;
|
@@ -51,6 +63,8 @@
|
|
51
63
|
377330791CC42A58005EAF65 /* libfixturesTwo.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libfixturesTwo.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
|
52
64
|
3773307B1CC42A58005EAF65 /* fixturesTwo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = fixturesTwo.h; sourceTree = "<group>"; };
|
53
65
|
3773307D1CC42A58005EAF65 /* fixturesTwo.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = fixturesTwo.m; sourceTree = "<group>"; };
|
66
|
+
8554482E1E461FAF0032518E /* fixturesTestsSecond.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = fixturesTestsSecond.m; sourceTree = "<group>"; };
|
67
|
+
85AE690C1E45F0F900DA2D47 /* fixturesTestsSecond.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = fixturesTestsSecond.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
54
68
|
8C0F0B3E1ACF43A300793B7D /* fixtures_m.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fixtures_m.h; sourceTree = "<group>"; };
|
55
69
|
8C0F0B3F1ACF43A300793B7D /* fixtures_m.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = fixtures_m.m; sourceTree = "<group>"; };
|
56
70
|
8C0F0B421ACF44E000793B7D /* fixtures_cpp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fixtures_cpp.cpp; sourceTree = "<group>"; };
|
@@ -59,7 +73,7 @@
|
|
59
73
|
8C0F0B471ACF44F200793B7D /* fixtures_mm.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = fixtures_mm.mm; sourceTree = "<group>"; };
|
60
74
|
8C52AEF5195AAE32008A882A /* peekaview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = peekaview.h; sourceTree = "<group>"; };
|
61
75
|
8C52AEF6195AAE32008A882A /* peekaview.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = peekaview.m; sourceTree = "<group>"; };
|
62
|
-
8C52AEF9195AAE70008A882A /* peekaviewTests
|
76
|
+
8C52AEF9195AAE70008A882A /* peekaviewTests💣.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "peekaviewTests💣.m"; sourceTree = "<group>"; };
|
63
77
|
8C9A202D195965F10013B6B3 /* libfixtures.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libfixtures.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
64
78
|
8C9A2030195965F10013B6B3 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
|
65
79
|
8C9A2033195965F10013B6B3 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
@@ -82,6 +96,16 @@
|
|
82
96
|
);
|
83
97
|
runOnlyForDeploymentPostprocessing = 0;
|
84
98
|
};
|
99
|
+
85AE69031E45F0F900DA2D47 /* Frameworks */ = {
|
100
|
+
isa = PBXFrameworksBuildPhase;
|
101
|
+
buildActionMask = 2147483647;
|
102
|
+
files = (
|
103
|
+
85AE69041E45F0F900DA2D47 /* libfixtures.a in Frameworks */,
|
104
|
+
85AE69051E45F0F900DA2D47 /* libfixturesTwo.dylib in Frameworks */,
|
105
|
+
85AE69061E45F0F900DA2D47 /* Cocoa.framework in Frameworks */,
|
106
|
+
);
|
107
|
+
runOnlyForDeploymentPostprocessing = 0;
|
108
|
+
};
|
85
109
|
8C9A202A195965F10013B6B3 /* Frameworks */ = {
|
86
110
|
isa = PBXFrameworksBuildPhase;
|
87
111
|
buildActionMask = 2147483647;
|
@@ -142,6 +166,7 @@
|
|
142
166
|
8C9A202D195965F10013B6B3 /* libfixtures.a */,
|
143
167
|
8C9A2040195965F10013B6B3 /* fixturesTests.xctest */,
|
144
168
|
377330791CC42A58005EAF65 /* libfixturesTwo.dylib */,
|
169
|
+
85AE690C1E45F0F900DA2D47 /* fixturesTestsSecond.xctest */,
|
145
170
|
);
|
146
171
|
name = Products;
|
147
172
|
sourceTree = "<group>";
|
@@ -194,8 +219,9 @@
|
|
194
219
|
isa = PBXGroup;
|
195
220
|
children = (
|
196
221
|
8C9A204D195965F10013B6B3 /* fixturesTests.m */,
|
222
|
+
8554482E1E461FAF0032518E /* fixturesTestsSecond.m */,
|
197
223
|
8C9A2048195965F10013B6B3 /* Supporting Files */,
|
198
|
-
8C52AEF9195AAE70008A882A /* peekaviewTests
|
224
|
+
8C52AEF9195AAE70008A882A /* peekaviewTests💣.m */,
|
199
225
|
155BBCA719E9CCC500BACB13 /* BranchesTests.m */,
|
200
226
|
);
|
201
227
|
path = fixturesTests;
|
@@ -254,6 +280,24 @@
|
|
254
280
|
productReference = 377330791CC42A58005EAF65 /* libfixturesTwo.dylib */;
|
255
281
|
productType = "com.apple.product-type.library.dynamic";
|
256
282
|
};
|
283
|
+
85AE68FC1E45F0F900DA2D47 /* fixturesTestsSecond */ = {
|
284
|
+
isa = PBXNativeTarget;
|
285
|
+
buildConfigurationList = 85AE69091E45F0F900DA2D47 /* Build configuration list for PBXNativeTarget "fixturesTestsSecond" */;
|
286
|
+
buildPhases = (
|
287
|
+
85AE68FF1E45F0F900DA2D47 /* Sources */,
|
288
|
+
85AE69031E45F0F900DA2D47 /* Frameworks */,
|
289
|
+
85AE69071E45F0F900DA2D47 /* Resources */,
|
290
|
+
);
|
291
|
+
buildRules = (
|
292
|
+
);
|
293
|
+
dependencies = (
|
294
|
+
85AE68FD1E45F0F900DA2D47 /* PBXTargetDependency */,
|
295
|
+
);
|
296
|
+
name = fixturesTestsSecond;
|
297
|
+
productName = fixturesTests;
|
298
|
+
productReference = 85AE690C1E45F0F900DA2D47 /* fixturesTestsSecond.xctest */;
|
299
|
+
productType = "com.apple.product-type.bundle.unit-test";
|
300
|
+
};
|
257
301
|
8C9A202C195965F10013B6B3 /* fixtures */ = {
|
258
302
|
isa = PBXNativeTarget;
|
259
303
|
buildConfigurationList = 8C9A2051195965F10013B6B3 /* Build configuration list for PBXNativeTarget "fixtures" */;
|
@@ -318,11 +362,20 @@
|
|
318
362
|
8C9A202C195965F10013B6B3 /* fixtures */,
|
319
363
|
377330781CC42A58005EAF65 /* fixturesTwo */,
|
320
364
|
8C9A203F195965F10013B6B3 /* fixturesTests */,
|
365
|
+
85AE68FC1E45F0F900DA2D47 /* fixturesTestsSecond */,
|
321
366
|
);
|
322
367
|
};
|
323
368
|
/* End PBXProject section */
|
324
369
|
|
325
370
|
/* Begin PBXResourcesBuildPhase section */
|
371
|
+
85AE69071E45F0F900DA2D47 /* Resources */ = {
|
372
|
+
isa = PBXResourcesBuildPhase;
|
373
|
+
buildActionMask = 2147483647;
|
374
|
+
files = (
|
375
|
+
85AE69081E45F0F900DA2D47 /* InfoPlist.strings in Resources */,
|
376
|
+
);
|
377
|
+
runOnlyForDeploymentPostprocessing = 0;
|
378
|
+
};
|
326
379
|
8C9A203E195965F10013B6B3 /* Resources */ = {
|
327
380
|
isa = PBXResourcesBuildPhase;
|
328
381
|
buildActionMask = 2147483647;
|
@@ -342,6 +395,14 @@
|
|
342
395
|
);
|
343
396
|
runOnlyForDeploymentPostprocessing = 0;
|
344
397
|
};
|
398
|
+
85AE68FF1E45F0F900DA2D47 /* Sources */ = {
|
399
|
+
isa = PBXSourcesBuildPhase;
|
400
|
+
buildActionMask = 2147483647;
|
401
|
+
files = (
|
402
|
+
8554482F1E461FAF0032518E /* fixturesTestsSecond.m in Sources */,
|
403
|
+
);
|
404
|
+
runOnlyForDeploymentPostprocessing = 0;
|
405
|
+
};
|
345
406
|
8C9A2029195965F10013B6B3 /* Sources */ = {
|
346
407
|
isa = PBXSourcesBuildPhase;
|
347
408
|
buildActionMask = 2147483647;
|
@@ -361,7 +422,7 @@
|
|
361
422
|
buildActionMask = 2147483647;
|
362
423
|
files = (
|
363
424
|
8C9A204E195965F10013B6B3 /* fixturesTests.m in Sources */,
|
364
|
-
8C52AEFA195AAE70008A882A /* peekaviewTests
|
425
|
+
8C52AEFA195AAE70008A882A /* peekaviewTests💣.m in Sources */,
|
365
426
|
155BBCA819E9CCC500BACB13 /* BranchesTests.m in Sources */,
|
366
427
|
);
|
367
428
|
runOnlyForDeploymentPostprocessing = 0;
|
@@ -369,6 +430,11 @@
|
|
369
430
|
/* End PBXSourcesBuildPhase section */
|
370
431
|
|
371
432
|
/* Begin PBXTargetDependency section */
|
433
|
+
85AE68FD1E45F0F900DA2D47 /* PBXTargetDependency */ = {
|
434
|
+
isa = PBXTargetDependency;
|
435
|
+
target = 8C9A202C195965F10013B6B3 /* fixtures */;
|
436
|
+
targetProxy = 85AE68FE1E45F0F900DA2D47 /* PBXContainerItemProxy */;
|
437
|
+
};
|
372
438
|
8C9A2045195965F10013B6B3 /* PBXTargetDependency */ = {
|
373
439
|
isa = PBXTargetDependency;
|
374
440
|
target = 8C9A202C195965F10013B6B3 /* fixtures */;
|
@@ -420,6 +486,40 @@
|
|
420
486
|
};
|
421
487
|
name = Release;
|
422
488
|
};
|
489
|
+
85AE690A1E45F0F900DA2D47 /* Debug */ = {
|
490
|
+
isa = XCBuildConfiguration;
|
491
|
+
buildSettings = {
|
492
|
+
COMBINE_HIDPI_IMAGES = YES;
|
493
|
+
FRAMEWORK_SEARCH_PATHS = (
|
494
|
+
"$(DEVELOPER_FRAMEWORKS_DIR)",
|
495
|
+
"$(inherited)",
|
496
|
+
);
|
497
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
498
|
+
GCC_PREFIX_HEADER = "fixtures/Supporting Files/fixtures-Prefix.pch";
|
499
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
500
|
+
"DEBUG=1",
|
501
|
+
"$(inherited)",
|
502
|
+
);
|
503
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
504
|
+
WRAPPER_EXTENSION = xctest;
|
505
|
+
};
|
506
|
+
name = Debug;
|
507
|
+
};
|
508
|
+
85AE690B1E45F0F900DA2D47 /* Release */ = {
|
509
|
+
isa = XCBuildConfiguration;
|
510
|
+
buildSettings = {
|
511
|
+
COMBINE_HIDPI_IMAGES = YES;
|
512
|
+
FRAMEWORK_SEARCH_PATHS = (
|
513
|
+
"$(DEVELOPER_FRAMEWORKS_DIR)",
|
514
|
+
"$(inherited)",
|
515
|
+
);
|
516
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
517
|
+
GCC_PREFIX_HEADER = "fixtures/Supporting Files/fixtures-Prefix.pch";
|
518
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
519
|
+
WRAPPER_EXTENSION = xctest;
|
520
|
+
};
|
521
|
+
name = Release;
|
522
|
+
};
|
423
523
|
8C9A204F195965F10013B6B3 /* Debug */ = {
|
424
524
|
isa = XCBuildConfiguration;
|
425
525
|
buildSettings = {
|
@@ -565,6 +665,15 @@
|
|
565
665
|
defaultConfigurationIsVisible = 0;
|
566
666
|
defaultConfigurationName = Release;
|
567
667
|
};
|
668
|
+
85AE69091E45F0F900DA2D47 /* Build configuration list for PBXNativeTarget "fixturesTestsSecond" */ = {
|
669
|
+
isa = XCConfigurationList;
|
670
|
+
buildConfigurations = (
|
671
|
+
85AE690A1E45F0F900DA2D47 /* Debug */,
|
672
|
+
85AE690B1E45F0F900DA2D47 /* Release */,
|
673
|
+
);
|
674
|
+
defaultConfigurationIsVisible = 0;
|
675
|
+
defaultConfigurationName = Release;
|
676
|
+
};
|
568
677
|
8C9A2028195965F00013B6B3 /* Build configuration list for PBXProject "fixtures" */ = {
|
569
678
|
isa = XCConfigurationList;
|
570
679
|
buildConfigurations = (
|
@@ -0,0 +1,109 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<Scheme
|
3
|
+
LastUpgradeVersion = "0730"
|
4
|
+
version = "1.3">
|
5
|
+
<BuildAction
|
6
|
+
parallelizeBuildables = "YES"
|
7
|
+
buildImplicitDependencies = "YES">
|
8
|
+
<BuildActionEntries>
|
9
|
+
<BuildActionEntry
|
10
|
+
buildForTesting = "YES"
|
11
|
+
buildForRunning = "YES"
|
12
|
+
buildForProfiling = "YES"
|
13
|
+
buildForArchiving = "YES"
|
14
|
+
buildForAnalyzing = "YES">
|
15
|
+
<BuildableReference
|
16
|
+
BuildableIdentifier = "primary"
|
17
|
+
BlueprintIdentifier = "85AE68FC1E45F0F900DA2D47"
|
18
|
+
BuildableName = "fixturesTestsSecond.xctest"
|
19
|
+
BlueprintName = "fixturesTestsSecond"
|
20
|
+
ReferencedContainer = "container:fixtures.xcodeproj">
|
21
|
+
</BuildableReference>
|
22
|
+
</BuildActionEntry>
|
23
|
+
</BuildActionEntries>
|
24
|
+
</BuildAction>
|
25
|
+
<TestAction
|
26
|
+
buildConfiguration = "Debug"
|
27
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
28
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
29
|
+
shouldUseLaunchSchemeArgsEnv = "YES">
|
30
|
+
<Testables>
|
31
|
+
<TestableReference
|
32
|
+
skipped = "NO">
|
33
|
+
<BuildableReference
|
34
|
+
BuildableIdentifier = "primary"
|
35
|
+
BlueprintIdentifier = "85AE68FC1E45F0F900DA2D47"
|
36
|
+
BuildableName = "fixturesTestsSecond.xctest"
|
37
|
+
BlueprintName = "fixturesTestsSecond"
|
38
|
+
ReferencedContainer = "container:fixtures.xcodeproj">
|
39
|
+
</BuildableReference>
|
40
|
+
</TestableReference>
|
41
|
+
<TestableReference
|
42
|
+
skipped = "NO">
|
43
|
+
<BuildableReference
|
44
|
+
BuildableIdentifier = "primary"
|
45
|
+
BlueprintIdentifier = "8C9A203F195965F10013B6B3"
|
46
|
+
BuildableName = "fixturesTests.xctest"
|
47
|
+
BlueprintName = "fixturesTests"
|
48
|
+
ReferencedContainer = "container:fixtures.xcodeproj">
|
49
|
+
</BuildableReference>
|
50
|
+
</TestableReference>
|
51
|
+
</Testables>
|
52
|
+
<MacroExpansion>
|
53
|
+
<BuildableReference
|
54
|
+
BuildableIdentifier = "primary"
|
55
|
+
BlueprintIdentifier = "85AE68FC1E45F0F900DA2D47"
|
56
|
+
BuildableName = "fixturesTestsSecond.xctest"
|
57
|
+
BlueprintName = "fixturesTestsSecond"
|
58
|
+
ReferencedContainer = "container:fixtures.xcodeproj">
|
59
|
+
</BuildableReference>
|
60
|
+
</MacroExpansion>
|
61
|
+
<AdditionalOptions>
|
62
|
+
</AdditionalOptions>
|
63
|
+
</TestAction>
|
64
|
+
<LaunchAction
|
65
|
+
buildConfiguration = "Debug"
|
66
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
67
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
68
|
+
launchStyle = "0"
|
69
|
+
useCustomWorkingDirectory = "NO"
|
70
|
+
ignoresPersistentStateOnLaunch = "NO"
|
71
|
+
debugDocumentVersioning = "YES"
|
72
|
+
debugServiceExtension = "internal"
|
73
|
+
allowLocationSimulation = "YES">
|
74
|
+
<MacroExpansion>
|
75
|
+
<BuildableReference
|
76
|
+
BuildableIdentifier = "primary"
|
77
|
+
BlueprintIdentifier = "85AE68FC1E45F0F900DA2D47"
|
78
|
+
BuildableName = "fixturesTestsSecond.xctest"
|
79
|
+
BlueprintName = "fixturesTestsSecond"
|
80
|
+
ReferencedContainer = "container:fixtures.xcodeproj">
|
81
|
+
</BuildableReference>
|
82
|
+
</MacroExpansion>
|
83
|
+
<AdditionalOptions>
|
84
|
+
</AdditionalOptions>
|
85
|
+
</LaunchAction>
|
86
|
+
<ProfileAction
|
87
|
+
buildConfiguration = "Release"
|
88
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
89
|
+
savedToolIdentifier = ""
|
90
|
+
useCustomWorkingDirectory = "NO"
|
91
|
+
debugDocumentVersioning = "YES">
|
92
|
+
<MacroExpansion>
|
93
|
+
<BuildableReference
|
94
|
+
BuildableIdentifier = "primary"
|
95
|
+
BlueprintIdentifier = "85AE68FC1E45F0F900DA2D47"
|
96
|
+
BuildableName = "fixturesTestsSecond.xctest"
|
97
|
+
BlueprintName = "fixturesTestsSecond"
|
98
|
+
ReferencedContainer = "container:fixtures.xcodeproj">
|
99
|
+
</BuildableReference>
|
100
|
+
</MacroExpansion>
|
101
|
+
</ProfileAction>
|
102
|
+
<AnalyzeAction
|
103
|
+
buildConfiguration = "Debug">
|
104
|
+
</AnalyzeAction>
|
105
|
+
<ArchiveAction
|
106
|
+
buildConfiguration = "Release"
|
107
|
+
revealArchiveInOrganizer = "YES">
|
108
|
+
</ArchiveAction>
|
109
|
+
</Scheme>
|
@@ -0,0 +1,99 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<Scheme
|
3
|
+
LastUpgradeVersion = "0600"
|
4
|
+
version = "1.3">
|
5
|
+
<BuildAction
|
6
|
+
parallelizeBuildables = "YES"
|
7
|
+
buildImplicitDependencies = "YES">
|
8
|
+
<BuildActionEntries>
|
9
|
+
<BuildActionEntry
|
10
|
+
buildForTesting = "YES"
|
11
|
+
buildForRunning = "YES"
|
12
|
+
buildForProfiling = "YES"
|
13
|
+
buildForArchiving = "YES"
|
14
|
+
buildForAnalyzing = "YES">
|
15
|
+
<BuildableReference
|
16
|
+
BuildableIdentifier = "primary"
|
17
|
+
BlueprintIdentifier = "85AE68FC1E45F0F900DA2D47"
|
18
|
+
BuildableName = "fixturesTestsSecond.xctest"
|
19
|
+
BlueprintName = "fixturesTestsSecond"
|
20
|
+
ReferencedContainer = "container:fixtures.xcodeproj">
|
21
|
+
</BuildableReference>
|
22
|
+
</BuildActionEntry>
|
23
|
+
</BuildActionEntries>
|
24
|
+
</BuildAction>
|
25
|
+
<TestAction
|
26
|
+
buildConfiguration = "Debug"
|
27
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
28
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
29
|
+
shouldUseLaunchSchemeArgsEnv = "YES">
|
30
|
+
<Testables>
|
31
|
+
<TestableReference
|
32
|
+
skipped = "NO">
|
33
|
+
<BuildableReference
|
34
|
+
BuildableIdentifier = "primary"
|
35
|
+
BlueprintIdentifier = "85AE68FC1E45F0F900DA2D47"
|
36
|
+
BuildableName = "fixturesTestsSecond.xctest"
|
37
|
+
BlueprintName = "fixturesTestsSecond"
|
38
|
+
ReferencedContainer = "container:fixtures.xcodeproj">
|
39
|
+
</BuildableReference>
|
40
|
+
</TestableReference>
|
41
|
+
</Testables>
|
42
|
+
<MacroExpansion>
|
43
|
+
<BuildableReference
|
44
|
+
BuildableIdentifier = "primary"
|
45
|
+
BlueprintIdentifier = "85AE68FC1E45F0F900DA2D47"
|
46
|
+
BuildableName = "fixturesTestsSecond.xctest"
|
47
|
+
BlueprintName = "fixturesTestsSecond"
|
48
|
+
ReferencedContainer = "container:fixtures.xcodeproj">
|
49
|
+
</BuildableReference>
|
50
|
+
</MacroExpansion>
|
51
|
+
<AdditionalOptions>
|
52
|
+
</AdditionalOptions>
|
53
|
+
</TestAction>
|
54
|
+
<LaunchAction
|
55
|
+
buildConfiguration = "Debug"
|
56
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
57
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
58
|
+
launchStyle = "0"
|
59
|
+
useCustomWorkingDirectory = "NO"
|
60
|
+
ignoresPersistentStateOnLaunch = "NO"
|
61
|
+
debugDocumentVersioning = "YES"
|
62
|
+
debugServiceExtension = "internal"
|
63
|
+
allowLocationSimulation = "YES">
|
64
|
+
<MacroExpansion>
|
65
|
+
<BuildableReference
|
66
|
+
BuildableIdentifier = "primary"
|
67
|
+
BlueprintIdentifier = "85AE68FC1E45F0F900DA2D47"
|
68
|
+
BuildableName = "fixturesTestsSecond.xctest"
|
69
|
+
BlueprintName = "fixturesTestsSecond"
|
70
|
+
ReferencedContainer = "container:fixtures.xcodeproj">
|
71
|
+
</BuildableReference>
|
72
|
+
</MacroExpansion>
|
73
|
+
<AdditionalOptions>
|
74
|
+
</AdditionalOptions>
|
75
|
+
</LaunchAction>
|
76
|
+
<ProfileAction
|
77
|
+
buildConfiguration = "Release"
|
78
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
79
|
+
savedToolIdentifier = ""
|
80
|
+
useCustomWorkingDirectory = "NO"
|
81
|
+
debugDocumentVersioning = "YES">
|
82
|
+
<MacroExpansion>
|
83
|
+
<BuildableReference
|
84
|
+
BuildableIdentifier = "primary"
|
85
|
+
BlueprintIdentifier = "85AE68FC1E45F0F900DA2D47"
|
86
|
+
BuildableName = "fixturesTestsSecond.xctest"
|
87
|
+
BlueprintName = "fixturesTestsSecond"
|
88
|
+
ReferencedContainer = "container:fixtures.xcodeproj">
|
89
|
+
</BuildableReference>
|
90
|
+
</MacroExpansion>
|
91
|
+
</ProfileAction>
|
92
|
+
<AnalyzeAction
|
93
|
+
buildConfiguration = "Debug">
|
94
|
+
</AnalyzeAction>
|
95
|
+
<ArchiveAction
|
96
|
+
buildConfiguration = "Release"
|
97
|
+
revealArchiveInOrganizer = "YES">
|
98
|
+
</ArchiveAction>
|
99
|
+
</Scheme>
|