This repository has been archived by the owner on Apr 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.pbxproj
1436 lines (1424 loc) · 109 KB
/
project.pbxproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
00CCF509443FC78BDAE702E9D0DDD6AC /* NSString+QCKSelectorName.m in Sources */ = {isa = PBXBuildFile; fileRef = 30707A1F3230E95AF8C214F2C51E3477 /* NSString+QCKSelectorName.m */; };
047A68C646E00EB6D7D4D7343B801D09 /* AdapterProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3DC9FAE16E2DD68869AF1B29FA0A42A /* AdapterProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
07722FBCF6B380961B9D2832D5883F45 /* BeGreaterThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2DEE1F436B68692319DE23FF7A16197E /* BeGreaterThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
0AEC20AACF9B10846830274E3B2AA6FD /* BeLogical.swift in Sources */ = {isa = PBXBuildFile; fileRef = 226C1AC4144C4405F39189731DF06CEC /* BeLogical.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
0ECEEBC712D404AA6CF1E76A9284BFF9 /* DSL.h in Headers */ = {isa = PBXBuildFile; fileRef = FB4B011BF1B4ECE6DC8D463CBA2E5EF7 /* DSL.h */; settings = {ATTRIBUTES = (Public, ); }; };
110A640A9BE45841BA938B4C29EF5446 /* ThrowAssertion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F0F33EFE650B5CE4774260C8F19455E /* ThrowAssertion.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
127CD37052B8E0BC645D83D4664F59D4 /* NMBStringify.m in Sources */ = {isa = PBXBuildFile; fileRef = 856B2E5E4EC8E2BD9ED45AAD6930A672 /* NMBStringify.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
17261E344C2027602431A636759AC7F2 /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 627AA9D56F221212717BC6C0D69D5091 /* DSL.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
1C50F54510D5C2B2AD84D7B74A6EDEBB /* BeGreaterThanOrEqualTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9265D9D90339F897C0C6F78088E7BEB /* BeGreaterThanOrEqualTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
1C7CA1FAFBF8B865596C739FEA39CDEE /* DSL.m in Sources */ = {isa = PBXBuildFile; fileRef = 91C1B940CAE99BBBBC563963CD22996B /* DSL.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
22C1DE74D494C10BBE727F239A68447D /* ThrowError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FBF7128876ED36020056A396B66AC27 /* ThrowError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
234BFC45ACAC4A8FB945EA17B6A74B0B /* SourceLocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 623285D9DBDE57EEBB2AC7A9C9663905 /* SourceLocation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
23E2E1E02FE79EE1E1688CBBAA777297 /* MatcherProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA2A27C4B8DBD796FF529A57FD25B53F /* MatcherProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
24EF979DB6A2B88464E07F5C5937EE14 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32DF21EF8268E32D359CD23F2CF3EFE3 /* Foundation.framework */; };
27B262F95D3CF9E3C74541A41929691C /* NMBStringify.h in Headers */ = {isa = PBXBuildFile; fileRef = D4621A1C4746AC480C7F889631FC8F57 /* NMBStringify.h */; settings = {ATTRIBUTES = (Public, ); }; };
2BDE71B48443C53646E987973F98DD25 /* QuickConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BD1C4C62388DB655C455E30CDF8012B /* QuickConfiguration.m */; };
2CF28B873AE955B3F741145721B6C6DA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32DF21EF8268E32D359CD23F2CF3EFE3 /* Foundation.framework */; };
33C8C9F68FC5C38B3881B5331EA82142 /* World+DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = B93CBD5A8C953715B286CC18EBD89EA5 /* World+DSL.swift */; };
3915DBB4731CB17B255A7FE86E240B6E /* CwlCatchBadInstruction.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CEE6D090220683EB93ACD11A04038DD /* CwlCatchBadInstruction.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
3E8D02F700DE9B88894E6001F7B8A803 /* BundledCocoapodDynamicFrameworkError-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 01BA778E58B878BA8340310C755E3DA1 /* BundledCocoapodDynamicFrameworkError-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
42897954EE5E0DDDCABF18497305CF6B /* MyLibSampleStruct.swift in Sources */ = {isa = PBXBuildFile; fileRef = 685E5F5F71BE2701CEE0875080641645 /* MyLibSampleStruct.swift */; };
469E9C3ED9FD6009F7C9AAF9E537E212 /* Nimble.h in Headers */ = {isa = PBXBuildFile; fileRef = CE7DD158EC41F47A2796AB19C2CD1AD8 /* Nimble.h */; settings = {ATTRIBUTES = (Public, ); }; };
4AD1E03A4260412AB440741189CF473E /* ExampleGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAEA58BA3A98ABA9AF85ACD8AE3CED36 /* ExampleGroup.swift */; };
4F3F103945CC52D0A3B8A891BB0E21C4 /* RaisesException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30778608352B15B9CFC7475AD8F932AB /* RaisesException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
4F6181777C0F9406F0F3B03DA484BFFA /* Callsite.swift in Sources */ = {isa = PBXBuildFile; fileRef = 566EED392600B84A615AC7615D23F5CB /* Callsite.swift */; };
50B80F12A9BAE302F07F6CF94752F462 /* mach_excServer.c in Sources */ = {isa = PBXBuildFile; fileRef = 0BC4F2CA1ACAB7C5DC246E5970464CA7 /* mach_excServer.c */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
53DF2588D6341C63D54AB328A2F265F5 /* URL+FileName.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3D11645B35A10BBA558B9BC99C1D340 /* URL+FileName.swift */; };
5442B9FFC72480654D374057CFB06C77 /* QuickSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = B89E09AD26974F1849359B57FE32A6AA /* QuickSpec.m */; };
551440A0F92574039C1D2EB39227D6B8 /* AsyncMatcherWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC3735170CDCA6A1C7E7D0E1876ED22B /* AsyncMatcherWrapper.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
556A477ADA7B5F8EC5488ACCF0FFB907 /* Pods-BundledCocoapodDynamicFrameworkError_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 68E269F4378F91E49DD6461A200CC147 /* Pods-BundledCocoapodDynamicFrameworkError_Example-dummy.m */; };
58FF3652157FCF0EEF9FD53BE7FE68D8 /* ExampleHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1AD0D67F0098C6695A93CAE9B27528F4 /* ExampleHooks.swift */; };
599669823A2EED2928C77F301F6B0515 /* BeNil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C7B2E4FE5801A893DA4774DEC2C3985 /* BeNil.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
626EEA21A34CCB064D9944CBEB629AC2 /* World+DSL.h in Headers */ = {isa = PBXBuildFile; fileRef = A32B9E8B551B9F568B0B3BBE309347CE /* World+DSL.h */; settings = {ATTRIBUTES = (Project, ); }; };
62744EF299751FB49B5FCD81D8C8FFF7 /* SatisfyAnyOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 208F66BD9FCF9E4BBBDCC434971F5113 /* SatisfyAnyOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
646BAA09DA09964B6F14B3DB9AF7585C /* HooksPhase.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE05FF5E6FC72D2287373D241DFBB6F2 /* HooksPhase.swift */; };
65F5217D44A557FC16218DE5DE348C35 /* CwlCatchBadInstruction.h in Headers */ = {isa = PBXBuildFile; fileRef = F9550ABBCFEA5EE7A657664A6BD9E1F7 /* CwlCatchBadInstruction.h */; settings = {ATTRIBUTES = (Public, ); }; };
6C2CF55D884009CCD2544C3821D6B8AC /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AECEA2EDA41473899EE391CA038EDC38 /* XCTest.framework */; };
6CDBA48C3A8621E4EE1DAFFE240F0D82 /* CwlCatchBadInstruction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A4E497DD63B34CAF4112164C7D5C267 /* CwlCatchBadInstruction.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
6E397D9FB11A47E48D70287D734B12B2 /* BeLessThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = 31F522E7A1E6B249CF89B55968863A58 /* BeLessThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
70ACDB5C071386CAB7A2B01D949176CE /* Quick-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 15E2114ED8AE0D3C939FFE5084E2DAEC /* Quick-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
71E5FCBC00DCAB5C203B3448C4C058E2 /* XCTestSuite+QuickTestSuiteBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = DDB66FCF4920E93C91641504EBEC78D1 /* XCTestSuite+QuickTestSuiteBuilder.m */; };
72AB4EB5F44DFD9FE82CABA00F261E79 /* QuickTestSuite.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76C2AD2F63645F36689BC3DF18067258 /* QuickTestSuite.swift */; };
737E19F3254F5929263982C29237C0BA /* CwlBadInstructionException.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6A47E312B3885EF64B81BD590AD21B4 /* CwlBadInstructionException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
74FD712F3B503891B6BD9E5CD287E481 /* AssertionDispatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCCFAE0EFBD62266157ABDA892351069 /* AssertionDispatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
76036D32625A56D480D84AA46961EF91 /* Nimble-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BCBDD456B535FEADB8D72DB83652D74D /* Nimble-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
78F3DE174B4F8D368EF8EEFD7EE62087 /* BeVoid.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C64DCE9D714CA88C06BDCC413FD3661 /* BeVoid.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
7C195C07D6164C8F16DB69D98A6A3B2A /* QCKDSL.h in Headers */ = {isa = PBXBuildFile; fileRef = D2993A848EFF16A1B29C5BF7F7202F42 /* QCKDSL.h */; settings = {ATTRIBUTES = (Public, ); }; };
7D2D1573F588B2520E3F3AAB4D5E2664 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32DF21EF8268E32D359CD23F2CF3EFE3 /* Foundation.framework */; };
7D6269A3CFE53C28DAA6B92E8FC017A7 /* FailureMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18CEB9B86795A0FDAA385DB81A49672B /* FailureMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
7F6750C7B1847733370B18C4CBFE32DF /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4EE1F2D1C9D5935F6B6B5CC49C89E323 /* Errors.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
8015239010C1D642F14C105F8FF8E035 /* Expression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5AC2EAD622CBF58EAD71675C54310955 /* Expression.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
820B898C334B1F2F7DB995E3CE15360F /* World.h in Headers */ = {isa = PBXBuildFile; fileRef = 4606F71071333AEDF06D8E31389AECC9 /* World.h */; settings = {ATTRIBUTES = (Project, ); }; };
830A1C56BCD01C806DDB40B7E1698516 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF7C0E600D08C899D8FE3A3AC0758905 /* Example.swift */; };
84810DED9E411C6963FA8E1AE1BA1169 /* NSBundle+CurrentTestBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = C81E409DD20CA59AA8A9A08E2B0B1B5F /* NSBundle+CurrentTestBundle.swift */; };
8507F4BF7437EB40A3626EDCC68BFF6D /* Contain.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1BBF1DEB58CE50279BE9C836B3DE1E1 /* Contain.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
8654571F855691C23B7B8E61B2141944 /* EndWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5058B4852C449730EE28E5F2CD349B24 /* EndWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
8689E7DB20EA9F97C3E5734E07949AAE /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36F9E76E718B474FBEB8C1824AA1413A /* Filter.swift */; };
86FFB76B2EDCF4AE79CC4C0BD8A0FE9A /* DSL+Wait.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2DAB46B24EC3101A9C139178DD3C5F2 /* DSL+Wait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
87DD62F200DAB5E1D701AB9F94D1D422 /* CwlCatchException.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BB1FA4E1DD555F459E31D6ECB9DB70C /* CwlCatchException.h */; settings = {ATTRIBUTES = (Public, ); }; };
8C30EAD5FFD28B387099B41C74657A67 /* NMBExpectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 215D2DBBD2F1901DAD0BA635F194457A /* NMBExpectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
8DD6DA4C48725337756141937B2FEDA5 /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B420A0E967EACA015B9CF21B2C491A8 /* DSL.swift */; };
917949F596E1188261FC59214782C3D9 /* NMBExceptionCapture.h in Headers */ = {isa = PBXBuildFile; fileRef = 72B50685A7115CB568F2F23A42E31BEA /* NMBExceptionCapture.h */; settings = {ATTRIBUTES = (Public, ); }; };
947162383483B6391F8CDF38249BFBD2 /* CwlCatchException.m in Sources */ = {isa = PBXBuildFile; fileRef = B4E171821B1D0ED4DB541E993A5B631F /* CwlCatchException.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
9544A4EEC2A8448743ECA9981F88B60F /* BeCloseTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF53CCA7C0DCBC78C82FED3FBDD6BF88 /* BeCloseTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
9AF235C16362BA00BFBF12147907E953 /* BeEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C33CF42AD6E1A448E98D4CAFB155DAA /* BeEmpty.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
9BEBD1791C233763A8DC13080BFB99C9 /* Stringers.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2F54711B380CFE23B29ACEF631A3929 /* Stringers.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
9E95D6E15DBE9B0FC92AAF60D42D1464 /* Nimble-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F795FA3DE9E15CB7DD017F791C55A8AC /* Nimble-dummy.m */; };
A33F1754198E8E8CCC7087F6176FFDC8 /* BeIdenticalTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10FFD83D547B8B236BCBB6812BC65762 /* BeIdenticalTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
A448F837592E21D9387322E8DA0DD93F /* BeAnInstanceOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = C97C4E97A47F53078887A61504367F9A /* BeAnInstanceOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
A77389861A99F35EB67B0D7DF945F254 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32DF21EF8268E32D359CD23F2CF3EFE3 /* Foundation.framework */; };
A880B2869390537000BD75D63520B498 /* QCKDSL.m in Sources */ = {isa = PBXBuildFile; fileRef = C7E5C9CD6DE12A0615BB5F68D0BE93AB /* QCKDSL.m */; };
A90195D555743A874FA2C1EA9220611A /* QuickSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C14CA30770ECA99AC2E8582C5D3C4DB /* QuickSpec.h */; settings = {ATTRIBUTES = (Public, ); }; };
A91166D0A5E8F1D5D5377622C381C045 /* Match.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C9A478DF22318E51905AFC8BF831B2D /* Match.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
AB255C27EF10E742C6567775022F49D5 /* BeginWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6C53CB242E67876DD3964EC5C775479 /* BeginWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
AC0B24EF198E3BEDFCC9F25D7B8EEDAB /* NMBObjCMatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCEC90FE3EA43490331DC53C67E7DE5B /* NMBObjCMatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
AC29CC89E22273BF0D0DC2C841B7524C /* Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = C69EC1174FCE1660F05AF470B443E0E7 /* Async.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
AD83DD82160B7FAA780CCED11819A8E7 /* Closures.swift in Sources */ = {isa = PBXBuildFile; fileRef = 462592DD75CDB244835F58221773956C /* Closures.swift */; };
AE204BF727CFE27CE4F658D23E1ED9AE /* Pods-BundledCocoapodDynamicFrameworkError_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 14812E29EC1CCFBA269634E0F4F119F5 /* Pods-BundledCocoapodDynamicFrameworkError_Tests-dummy.m */; };
B093484B1637B3D3AF65DF2232FDBADC /* mach_excServer.h in Headers */ = {isa = PBXBuildFile; fileRef = B85EE744366A34C7FDACC881DF2B63AB /* mach_excServer.h */; settings = {ATTRIBUTES = (Public, ); }; };
B09F3F735197BEB2B3EC7F02BB65B5CC /* Pods-BundledCocoapodDynamicFrameworkError_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 793D590CAE3CEEA92E2356D00E61D480 /* Pods-BundledCocoapodDynamicFrameworkError_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
B9BD565DAB07F8E2288A960A1D3EFAC1 /* MatcherFunc.swift in Sources */ = {isa = PBXBuildFile; fileRef = ACB1FA806FF532E4E4DF8E6B4FFEB9C6 /* MatcherFunc.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
BB10A2D0B1EE5B1BA811354116F83E3F /* CwlDarwinDefinitions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62A5C7D27930FA6D032FA0D83D8E8239 /* CwlDarwinDefinitions.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
BB4792C2A2FD9AE429B10D32A1E7A9A2 /* Configuration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D9DD9D6490CDC782AB0EBFF62EC7AEE /* Configuration.swift */; };
BF3AF1D2B46E09E2B3DCC824E6C1F5AF /* Equal.swift in Sources */ = {isa = PBXBuildFile; fileRef = C12298FB0CC92BD3BD16C958F3718416 /* Equal.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
C355177209A86B87C6BEE8B88236879A /* QuickConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A4149CBE238527B194D1F9ABA8B1425 /* QuickConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; };
C3DD135B7A45F4B745696EC0975AD770 /* Quick.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C5E4C955DDEF4822A80B37B5651F8ED /* Quick.h */; settings = {ATTRIBUTES = (Public, ); }; };
CB7558CCDD935C9E82BBF454022ED1D3 /* Expectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05E8C36BA4865751AB3994028E5BE98B /* Expectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
CE3FA6AE0944D4AE737F0E57CFF4A615 /* HaveCount.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA22155F3C9AB9685BF4ED3A389D109A /* HaveCount.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
CE4CEF6328E255B380E2B2692B351CF8 /* MatchError.swift in Sources */ = {isa = PBXBuildFile; fileRef = A91D06EDAC9BBAD13C3148F1E86A9AD4 /* MatchError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
D71E426286D456BA0C6B40E1C2CF0907 /* QuickSelectedTestSuiteBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94B9FC85D7FEB2B0433347BA137CC7E1 /* QuickSelectedTestSuiteBuilder.swift */; };
D88575ED37BC462E8130CDBEFE9EA308 /* XCTestObservationCenter+Register.m in Sources */ = {isa = PBXBuildFile; fileRef = 60A4CF4AA34D746BEB8F62EA84D9F202 /* XCTestObservationCenter+Register.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
DC32331BE565888E694E1321BB1D80F5 /* NMBExceptionCapture.m in Sources */ = {isa = PBXBuildFile; fileRef = 86806CF3A6F7FB54DF0EEB9134380E4E /* NMBExceptionCapture.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
DCEE854E62441E78FED15CC994497F61 /* AllPass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06E793A8549531332D1762623F08F9BF /* AllPass.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
E11C9D2FED44BD438A9DFFEA4C409066 /* World.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BD3BF5EB0A249E68523B43B6402EA1C /* World.swift */; };
E38CC4BBBF6EFC751D718C2ABEF705C5 /* SuiteHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04F10AA7D49AA59EDAA9771CD96960B9 /* SuiteHooks.swift */; };
E5884A29E0928CCEAD5D67695D5B190A /* BundledCocoapodDynamicFrameworkError-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 26CF14022BDB9EFA6D376A94F941FCF3 /* BundledCocoapodDynamicFrameworkError-dummy.m */; };
E5CCEF0B83F8272D10671C01AAE4FFA0 /* NimbleXCTestHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AA367A34E0B8C1B01749CCC12FD43C5 /* NimbleXCTestHandler.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
E82F718D868347FDA534830AC75FC9D3 /* NSString+QCKSelectorName.h in Headers */ = {isa = PBXBuildFile; fileRef = D9571DDE390A0012143BA7AAAE1D39DC /* NSString+QCKSelectorName.h */; settings = {ATTRIBUTES = (Project, ); }; };
EBA52C16F42E42A1824D87C284F4A60C /* PostNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 525B5EB32452EE8123EA3E65FDC81622 /* PostNotification.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
F1AD12B879D2FCCA7A6005ABA6ED511C /* Quick-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DFABEEB10F2E9D33C12ECA566D5947A1 /* Quick-dummy.m */; };
F4A1B7A059AAA6727EB70E58E09332A4 /* CwlCatchException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C6329DD1EE75A68AA931A2192C28C69 /* CwlCatchException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
F60D221B548716DF35193FC2CF244676 /* BeAKindOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71937B4B91A62971088D88CADF9D17CC /* BeAKindOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
F693D0A9E0D05F815A85DC258E75AF8D /* CurrentTestCaseTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = CCD0E5C7B919B722CBA4C68A93D55A7A /* CurrentTestCaseTracker.h */; settings = {ATTRIBUTES = (Private, ); }; };
F8C5C8D87A543BC37AE2F1EA1F146387 /* Pods-BundledCocoapodDynamicFrameworkError_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 14EEA8A4B1CCA9FD45BBE0B07183D1A3 /* Pods-BundledCocoapodDynamicFrameworkError_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
F9D61EB5EEB799105913685722FF4C9C /* NimbleEnvironment.swift in Sources */ = {isa = PBXBuildFile; fileRef = F26BA5A6FE4D418C4B347B819197FA63 /* NimbleEnvironment.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
F9E05A63D447B51E008B89731192FE7F /* AssertionRecorder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33C4401213EBEC6BC1797D974E52767D /* AssertionRecorder.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
FAB4ECE0C5039D99BB7173880670871D /* BeLessThanOrEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = 104135CFA58204DC8EBF1167E28F5206 /* BeLessThanOrEqual.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
FC48801200DEC208BA2E505D79DD36EE /* ExampleMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98BEFCA54D25BED3A87F8A8BC72FDE02 /* ExampleMetadata.swift */; };
FCCF29CE9AB45F78F41E706AE012927C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32DF21EF8268E32D359CD23F2CF3EFE3 /* Foundation.framework */; };
FCFFEB587281358CFF05A65ED9E94C12 /* Functional.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7FE7DAEFE89DD4FD50B980F9C9D6B7B2 /* Functional.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
FD08B26CB382B836BDECB858D70DC2BE /* ErrorUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = E15A0E5C2D8902D8B3F11BE86DE704B8 /* ErrorUtility.swift */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
5C2616C7853D58192D39C62A7693522B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 28EC04E45B2A2A40A1AC36DE37202687;
remoteInfo = BundledCocoapodDynamicFrameworkError;
};
B2F193E3FCA24D4B86BB2F0C31968315 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 1321E318D10CFDC9F5B93A7952492CCD;
remoteInfo = Nimble;
};
EAFC997F12CDE6856BFFBC10FE5550E4 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 98DC497E544A9F9CB7B7D9E51F1FE26B;
remoteInfo = Quick;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
0129A9CB2AAF99D88B92AF83A508DF57 /* Pods-BundledCocoapodDynamicFrameworkError_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-BundledCocoapodDynamicFrameworkError_Example-frameworks.sh"; sourceTree = "<group>"; };
01BA778E58B878BA8340310C755E3DA1 /* BundledCocoapodDynamicFrameworkError-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BundledCocoapodDynamicFrameworkError-umbrella.h"; sourceTree = "<group>"; };
04F10AA7D49AA59EDAA9771CD96960B9 /* SuiteHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SuiteHooks.swift; path = Sources/Quick/Hooks/SuiteHooks.swift; sourceTree = "<group>"; };
05AFB32F669F92CF4FDA35894F080718 /* Pods-BundledCocoapodDynamicFrameworkError_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-BundledCocoapodDynamicFrameworkError_Example-acknowledgements.plist"; sourceTree = "<group>"; };
05E8C36BA4865751AB3994028E5BE98B /* Expectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expectation.swift; path = Sources/Nimble/Expectation.swift; sourceTree = "<group>"; };
06E793A8549531332D1762623F08F9BF /* AllPass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllPass.swift; path = Sources/Nimble/Matchers/AllPass.swift; sourceTree = "<group>"; };
0B420A0E967EACA015B9CF21B2C491A8 /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Sources/Quick/DSL/DSL.swift; sourceTree = "<group>"; };
0BC4F2CA1ACAB7C5DC246E5970464CA7 /* mach_excServer.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mach_excServer.c; path = Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/mach_excServer.c; sourceTree = "<group>"; };
104135CFA58204DC8EBF1167E28F5206 /* BeLessThanOrEqual.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThanOrEqual.swift; path = Sources/Nimble/Matchers/BeLessThanOrEqual.swift; sourceTree = "<group>"; };
10A6022BBC6CFFF3D064AB4D0A0EBD65 /* Pods-BundledCocoapodDynamicFrameworkError_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-BundledCocoapodDynamicFrameworkError_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
10FFD83D547B8B236BCBB6812BC65762 /* BeIdenticalTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeIdenticalTo.swift; path = Sources/Nimble/Matchers/BeIdenticalTo.swift; sourceTree = "<group>"; };
12623DB7EBAF9117748694F585BC335F /* Pods-BundledCocoapodDynamicFrameworkError_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-BundledCocoapodDynamicFrameworkError_Tests-frameworks.sh"; sourceTree = "<group>"; };
13CD77BA2C07B04A72504525A712314C /* BundledCocoapodDynamicFrameworkError.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = BundledCocoapodDynamicFrameworkError.framework; path = BundledCocoapodDynamicFrameworkError.framework; sourceTree = BUILT_PRODUCTS_DIR; };
14537A5EC332D4F5F8A2D483B328CC37 /* Nimble.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = Nimble.modulemap; sourceTree = "<group>"; };
14812E29EC1CCFBA269634E0F4F119F5 /* Pods-BundledCocoapodDynamicFrameworkError_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-BundledCocoapodDynamicFrameworkError_Tests-dummy.m"; sourceTree = "<group>"; };
14EEA8A4B1CCA9FD45BBE0B07183D1A3 /* Pods-BundledCocoapodDynamicFrameworkError_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-BundledCocoapodDynamicFrameworkError_Example-umbrella.h"; sourceTree = "<group>"; };
15E2114ED8AE0D3C939FFE5084E2DAEC /* Quick-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-umbrella.h"; sourceTree = "<group>"; };
18CEB9B86795A0FDAA385DB81A49672B /* FailureMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FailureMessage.swift; path = Sources/Nimble/FailureMessage.swift; sourceTree = "<group>"; };
1AD0D67F0098C6695A93CAE9B27528F4 /* ExampleHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleHooks.swift; path = Sources/Quick/Hooks/ExampleHooks.swift; sourceTree = "<group>"; };
1C5E4C955DDEF4822A80B37B5651F8ED /* Quick.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Quick.h; path = Sources/QuickObjectiveC/Quick.h; sourceTree = "<group>"; };
1C9A478DF22318E51905AFC8BF831B2D /* Match.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Match.swift; path = Sources/Nimble/Matchers/Match.swift; sourceTree = "<group>"; };
208F66BD9FCF9E4BBBDCC434971F5113 /* SatisfyAnyOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SatisfyAnyOf.swift; path = Sources/Nimble/Matchers/SatisfyAnyOf.swift; sourceTree = "<group>"; };
215D2DBBD2F1901DAD0BA635F194457A /* NMBExpectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NMBExpectation.swift; path = Sources/Nimble/Adapters/NMBExpectation.swift; sourceTree = "<group>"; };
226C1AC4144C4405F39189731DF06CEC /* BeLogical.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLogical.swift; path = Sources/Nimble/Matchers/BeLogical.swift; sourceTree = "<group>"; };
265D96DF4DDEE0924C0AACF97DF9FCDA /* Pods-BundledCocoapodDynamicFrameworkError_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-BundledCocoapodDynamicFrameworkError_Tests.modulemap"; sourceTree = "<group>"; };
26CF14022BDB9EFA6D376A94F941FCF3 /* BundledCocoapodDynamicFrameworkError-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BundledCocoapodDynamicFrameworkError-dummy.m"; sourceTree = "<group>"; };
2BD1C4C62388DB655C455E30CDF8012B /* QuickConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickConfiguration.m; path = Sources/QuickObjectiveC/Configuration/QuickConfiguration.m; sourceTree = "<group>"; };
2C14CA30770ECA99AC2E8582C5D3C4DB /* QuickSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickSpec.h; path = Sources/QuickObjectiveC/QuickSpec.h; sourceTree = "<group>"; };
2D9DD9D6490CDC782AB0EBFF62EC7AEE /* Configuration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Configuration.swift; path = Sources/Quick/Configuration/Configuration.swift; sourceTree = "<group>"; };
2DEE1F436B68692319DE23FF7A16197E /* BeGreaterThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThan.swift; path = Sources/Nimble/Matchers/BeGreaterThan.swift; sourceTree = "<group>"; };
30707A1F3230E95AF8C214F2C51E3477 /* NSString+QCKSelectorName.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+QCKSelectorName.m"; path = "Sources/QuickObjectiveC/NSString+QCKSelectorName.m"; sourceTree = "<group>"; };
30778608352B15B9CFC7475AD8F932AB /* RaisesException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RaisesException.swift; path = Sources/Nimble/Matchers/RaisesException.swift; sourceTree = "<group>"; };
31F522E7A1E6B249CF89B55968863A58 /* BeLessThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThan.swift; path = Sources/Nimble/Matchers/BeLessThan.swift; sourceTree = "<group>"; };
3230AF5E0D6737D8BFFD7A13667B862D /* Pods-BundledCocoapodDynamicFrameworkError_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-BundledCocoapodDynamicFrameworkError_Example.debug.xcconfig"; sourceTree = "<group>"; };
32343C8281B13DD7FE4F6D40BDF37C6A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
32DF21EF8268E32D359CD23F2CF3EFE3 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
33C4401213EBEC6BC1797D974E52767D /* AssertionRecorder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionRecorder.swift; path = Sources/Nimble/Adapters/AssertionRecorder.swift; sourceTree = "<group>"; };
35BBA81DFF396202A64B128469338193 /* BundledCocoapodDynamicFrameworkError.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = BundledCocoapodDynamicFrameworkError.modulemap; sourceTree = "<group>"; };
36F9E76E718B474FBEB8C1824AA1413A /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = Sources/Quick/Filter.swift; sourceTree = "<group>"; };
4606F71071333AEDF06D8E31389AECC9 /* World.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = World.h; path = Sources/QuickObjectiveC/World.h; sourceTree = "<group>"; };
462592DD75CDB244835F58221773956C /* Closures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Closures.swift; path = Sources/Quick/Hooks/Closures.swift; sourceTree = "<group>"; };
473162EAADE47F759500100475A4A4BE /* Quick.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Quick.xcconfig; sourceTree = "<group>"; };
4B7E39158C032742F5DB8A1F5F944A38 /* Quick-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-prefix.pch"; sourceTree = "<group>"; };
4C6329DD1EE75A68AA931A2192C28C69 /* CwlCatchException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchException.swift; path = Sources/Lib/CwlPreconditionTesting/CwlCatchException/CwlCatchException/CwlCatchException.swift; sourceTree = "<group>"; };
4CEE6D090220683EB93ACD11A04038DD /* CwlCatchBadInstruction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CwlCatchBadInstruction.m; path = Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlCatchBadInstruction.m; sourceTree = "<group>"; };
4EE1F2D1C9D5935F6B6B5CC49C89E323 /* Errors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Errors.swift; path = Sources/Nimble/Utils/Errors.swift; sourceTree = "<group>"; };
4F0F33EFE650B5CE4774260C8F19455E /* ThrowAssertion.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThrowAssertion.swift; path = Sources/Nimble/Matchers/ThrowAssertion.swift; sourceTree = "<group>"; };
4FBF7128876ED36020056A396B66AC27 /* ThrowError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThrowError.swift; path = Sources/Nimble/Matchers/ThrowError.swift; sourceTree = "<group>"; };
5058B4852C449730EE28E5F2CD349B24 /* EndWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndWith.swift; path = Sources/Nimble/Matchers/EndWith.swift; sourceTree = "<group>"; };
525B5EB32452EE8123EA3E65FDC81622 /* PostNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PostNotification.swift; path = Sources/Nimble/Matchers/PostNotification.swift; sourceTree = "<group>"; };
566EED392600B84A615AC7615D23F5CB /* Callsite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Callsite.swift; path = Sources/Quick/Callsite.swift; sourceTree = "<group>"; };
5A4E497DD63B34CAF4112164C7D5C267 /* CwlCatchBadInstruction.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchBadInstruction.swift; path = Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlCatchBadInstruction.swift; sourceTree = "<group>"; };
5AC2EAD622CBF58EAD71675C54310955 /* Expression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expression.swift; path = Sources/Nimble/Expression.swift; sourceTree = "<group>"; };
5F1257A75675CB02F43424CDA0594ACB /* BundledCocoapodDynamicFrameworkError-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BundledCocoapodDynamicFrameworkError-prefix.pch"; sourceTree = "<group>"; };
60A4CF4AA34D746BEB8F62EA84D9F202 /* XCTestObservationCenter+Register.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "XCTestObservationCenter+Register.m"; path = "Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m"; sourceTree = "<group>"; };
623285D9DBDE57EEBB2AC7A9C9663905 /* SourceLocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SourceLocation.swift; path = Sources/Nimble/Utils/SourceLocation.swift; sourceTree = "<group>"; };
627AA9D56F221212717BC6C0D69D5091 /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Sources/Nimble/DSL.swift; sourceTree = "<group>"; };
62A5C7D27930FA6D032FA0D83D8E8239 /* CwlDarwinDefinitions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlDarwinDefinitions.swift; path = Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlDarwinDefinitions.swift; sourceTree = "<group>"; };
65F1C61BD1A7E21B3D42D1EE6CE49098 /* Pods-BundledCocoapodDynamicFrameworkError_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-BundledCocoapodDynamicFrameworkError_Example.modulemap"; sourceTree = "<group>"; };
685E5F5F71BE2701CEE0875080641645 /* MyLibSampleStruct.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = MyLibSampleStruct.swift; sourceTree = "<group>"; };
68E269F4378F91E49DD6461A200CC147 /* Pods-BundledCocoapodDynamicFrameworkError_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-BundledCocoapodDynamicFrameworkError_Example-dummy.m"; sourceTree = "<group>"; };
6F579A910F8F80938916FAB83C722CBB /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
71937B4B91A62971088D88CADF9D17CC /* BeAKindOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAKindOf.swift; path = Sources/Nimble/Matchers/BeAKindOf.swift; sourceTree = "<group>"; };
72B50685A7115CB568F2F23A42E31BEA /* NMBExceptionCapture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NMBExceptionCapture.h; path = Sources/NimbleObjectiveC/NMBExceptionCapture.h; sourceTree = "<group>"; };
76C2AD2F63645F36689BC3DF18067258 /* QuickTestSuite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickTestSuite.swift; path = Sources/Quick/QuickTestSuite.swift; sourceTree = "<group>"; };
793D590CAE3CEEA92E2356D00E61D480 /* Pods-BundledCocoapodDynamicFrameworkError_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-BundledCocoapodDynamicFrameworkError_Tests-umbrella.h"; sourceTree = "<group>"; };
798CDB8F3AEDDFFB3687432B6EA0218E /* Pods-BundledCocoapodDynamicFrameworkError_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-BundledCocoapodDynamicFrameworkError_Tests.release.xcconfig"; sourceTree = "<group>"; };
79DFA7B7F6D27B04CD9B28E80C83D81C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
7AA367A34E0B8C1B01749CCC12FD43C5 /* NimbleXCTestHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleXCTestHandler.swift; path = Sources/Nimble/Adapters/NimbleXCTestHandler.swift; sourceTree = "<group>"; };
7FE7DAEFE89DD4FD50B980F9C9D6B7B2 /* Functional.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Functional.swift; path = Sources/Nimble/Utils/Functional.swift; sourceTree = "<group>"; };
856B2E5E4EC8E2BD9ED45AAD6930A672 /* NMBStringify.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NMBStringify.m; path = Sources/NimbleObjectiveC/NMBStringify.m; sourceTree = "<group>"; };
86806CF3A6F7FB54DF0EEB9134380E4E /* NMBExceptionCapture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NMBExceptionCapture.m; path = Sources/NimbleObjectiveC/NMBExceptionCapture.m; sourceTree = "<group>"; };
87FF3D29D80196016229C00A02FD4CF7 /* Pods-BundledCocoapodDynamicFrameworkError_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-BundledCocoapodDynamicFrameworkError_Example-resources.sh"; sourceTree = "<group>"; };
88A9381D91255401863A2174DDDDC0A3 /* Nimble-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-prefix.pch"; sourceTree = "<group>"; };
8BD3BF5EB0A249E68523B43B6402EA1C /* World.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = World.swift; path = Sources/Quick/World.swift; sourceTree = "<group>"; };
8C64DCE9D714CA88C06BDCC413FD3661 /* BeVoid.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeVoid.swift; path = Sources/Nimble/Matchers/BeVoid.swift; sourceTree = "<group>"; };
91C1B940CAE99BBBBC563963CD22996B /* DSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DSL.m; path = Sources/NimbleObjectiveC/DSL.m; sourceTree = "<group>"; };
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
94B9FC85D7FEB2B0433347BA137CC7E1 /* QuickSelectedTestSuiteBuilder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickSelectedTestSuiteBuilder.swift; path = Sources/Quick/QuickSelectedTestSuiteBuilder.swift; sourceTree = "<group>"; };
954B5272EA2120AA3260D71B6BEF8007 /* Nimble.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Nimble.xcconfig; sourceTree = "<group>"; };
9718A526666A7F613622901466B0C596 /* SampleDynamicLib.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SampleDynamicLib.framework; path = BundledCocoapodDynamicFrameworkError/Frameworks/SampleDynamicLib.framework; sourceTree = "<group>"; };
98BEFCA54D25BED3A87F8A8BC72FDE02 /* ExampleMetadata.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleMetadata.swift; path = Sources/Quick/ExampleMetadata.swift; sourceTree = "<group>"; };
9A4149CBE238527B194D1F9ABA8B1425 /* QuickConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickConfiguration.h; path = Sources/QuickObjectiveC/Configuration/QuickConfiguration.h; sourceTree = "<group>"; };
9AD041EED5C6A1B6A82C71C9E5AA3FE1 /* Quick.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = Quick.modulemap; sourceTree = "<group>"; };
9BB1FA4E1DD555F459E31D6ECB9DB70C /* CwlCatchException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlCatchException.h; path = Sources/Lib/CwlPreconditionTesting/CwlCatchException/CwlCatchException/CwlCatchException.h; sourceTree = "<group>"; };
9C33CF42AD6E1A448E98D4CAFB155DAA /* BeEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeEmpty.swift; path = Sources/Nimble/Matchers/BeEmpty.swift; sourceTree = "<group>"; };
9C7B2E4FE5801A893DA4774DEC2C3985 /* BeNil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeNil.swift; path = Sources/Nimble/Matchers/BeNil.swift; sourceTree = "<group>"; };
9FF015543A79F405F16A8E9954BE41CA /* Pods-BundledCocoapodDynamicFrameworkError_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-BundledCocoapodDynamicFrameworkError_Tests.debug.xcconfig"; sourceTree = "<group>"; };
A088E4DF9DD7E8C46B365AC1611CBA2F /* Pods-BundledCocoapodDynamicFrameworkError_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-BundledCocoapodDynamicFrameworkError_Tests-resources.sh"; sourceTree = "<group>"; };
A32B9E8B551B9F568B0B3BBE309347CE /* World+DSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "World+DSL.h"; path = "Sources/QuickObjectiveC/DSL/World+DSL.h"; sourceTree = "<group>"; };
A3D11645B35A10BBA558B9BC99C1D340 /* URL+FileName.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URL+FileName.swift"; path = "Sources/Quick/URL+FileName.swift"; sourceTree = "<group>"; };
A6421B48B54DA64CFE0475989DA0ADD5 /* Nimble.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Nimble.framework; path = Nimble.framework; sourceTree = BUILT_PRODUCTS_DIR; };
A91D06EDAC9BBAD13C3148F1E86A9AD4 /* MatchError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatchError.swift; path = Sources/Nimble/Matchers/MatchError.swift; sourceTree = "<group>"; };
A9265D9D90339F897C0C6F78088E7BEB /* BeGreaterThanOrEqualTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThanOrEqualTo.swift; path = Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift; sourceTree = "<group>"; };
AAEA58BA3A98ABA9AF85ACD8AE3CED36 /* ExampleGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleGroup.swift; path = Sources/Quick/ExampleGroup.swift; sourceTree = "<group>"; };
ACB1FA806FF532E4E4DF8E6B4FFEB9C6 /* MatcherFunc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatcherFunc.swift; path = Sources/Nimble/Matchers/MatcherFunc.swift; sourceTree = "<group>"; };
AECEA2EDA41473899EE391CA038EDC38 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk/System/Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
AF53CCA7C0DCBC78C82FED3FBDD6BF88 /* BeCloseTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeCloseTo.swift; path = Sources/Nimble/Matchers/BeCloseTo.swift; sourceTree = "<group>"; };
B2DAB46B24EC3101A9C139178DD3C5F2 /* DSL+Wait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DSL+Wait.swift"; path = "Sources/Nimble/DSL+Wait.swift"; sourceTree = "<group>"; };
B4E171821B1D0ED4DB541E993A5B631F /* CwlCatchException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CwlCatchException.m; path = Sources/Lib/CwlPreconditionTesting/CwlCatchException/CwlCatchException/CwlCatchException.m; sourceTree = "<group>"; };
B5F9466E65F53499522F0F5665FB075F /* Pods_BundledCocoapodDynamicFrameworkError_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_BundledCocoapodDynamicFrameworkError_Example.framework; path = "Pods-BundledCocoapodDynamicFrameworkError_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
B641D1923783CCE634357A9A25B3148F /* Pods-BundledCocoapodDynamicFrameworkError_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-BundledCocoapodDynamicFrameworkError_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
B85EE744366A34C7FDACC881DF2B63AB /* mach_excServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mach_excServer.h; path = Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/mach_excServer.h; sourceTree = "<group>"; };
B89E09AD26974F1849359B57FE32A6AA /* QuickSpec.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickSpec.m; path = Sources/QuickObjectiveC/QuickSpec.m; sourceTree = "<group>"; };
B93CBD5A8C953715B286CC18EBD89EA5 /* World+DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "World+DSL.swift"; path = "Sources/Quick/DSL/World+DSL.swift"; sourceTree = "<group>"; };
BA22155F3C9AB9685BF4ED3A389D109A /* HaveCount.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HaveCount.swift; path = Sources/Nimble/Matchers/HaveCount.swift; sourceTree = "<group>"; };
BC3735170CDCA6A1C7E7D0E1876ED22B /* AsyncMatcherWrapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncMatcherWrapper.swift; path = Sources/Nimble/Matchers/AsyncMatcherWrapper.swift; sourceTree = "<group>"; };
BCBDD456B535FEADB8D72DB83652D74D /* Nimble-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-umbrella.h"; sourceTree = "<group>"; };
BE05FF5E6FC72D2287373D241DFBB6F2 /* HooksPhase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HooksPhase.swift; path = Sources/Quick/Hooks/HooksPhase.swift; sourceTree = "<group>"; };
C12298FB0CC92BD3BD16C958F3718416 /* Equal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Equal.swift; path = Sources/Nimble/Matchers/Equal.swift; sourceTree = "<group>"; };
C56BA84222AF5A8B84281D3154C43337 /* Pods-BundledCocoapodDynamicFrameworkError_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-BundledCocoapodDynamicFrameworkError_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
C5EE61FF5746483205134901C54EC0F5 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
C69EC1174FCE1660F05AF470B443E0E7 /* Async.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Async.swift; path = Sources/Nimble/Utils/Async.swift; sourceTree = "<group>"; };
C7E5C9CD6DE12A0615BB5F68D0BE93AB /* QCKDSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QCKDSL.m; path = Sources/QuickObjectiveC/DSL/QCKDSL.m; sourceTree = "<group>"; };
C81E409DD20CA59AA8A9A08E2B0B1B5F /* NSBundle+CurrentTestBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSBundle+CurrentTestBundle.swift"; path = "Sources/Quick/NSBundle+CurrentTestBundle.swift"; sourceTree = "<group>"; };
C97C4E97A47F53078887A61504367F9A /* BeAnInstanceOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAnInstanceOf.swift; path = Sources/Nimble/Matchers/BeAnInstanceOf.swift; sourceTree = "<group>"; };
CC63AFDBFCF85247F7452E8BF1290F7D /* Pods_BundledCocoapodDynamicFrameworkError_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_BundledCocoapodDynamicFrameworkError_Tests.framework; path = "Pods-BundledCocoapodDynamicFrameworkError_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
CCD0E5C7B919B722CBA4C68A93D55A7A /* CurrentTestCaseTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CurrentTestCaseTracker.h; path = Sources/NimbleObjectiveC/CurrentTestCaseTracker.h; sourceTree = "<group>"; };
CE7DD158EC41F47A2796AB19C2CD1AD8 /* Nimble.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Nimble.h; path = Sources/Nimble/Nimble.h; sourceTree = "<group>"; };
D1BBF1DEB58CE50279BE9C836B3DE1E1 /* Contain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Contain.swift; path = Sources/Nimble/Matchers/Contain.swift; sourceTree = "<group>"; };
D1E8474A7C294A3379D035EA35A0593A /* Pods-BundledCocoapodDynamicFrameworkError_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-BundledCocoapodDynamicFrameworkError_Example.release.xcconfig"; sourceTree = "<group>"; };
D2993A848EFF16A1B29C5BF7F7202F42 /* QCKDSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QCKDSL.h; path = Sources/QuickObjectiveC/DSL/QCKDSL.h; sourceTree = "<group>"; };
D4621A1C4746AC480C7F889631FC8F57 /* NMBStringify.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NMBStringify.h; path = Sources/NimbleObjectiveC/NMBStringify.h; sourceTree = "<group>"; };
D6A47E312B3885EF64B81BD590AD21B4 /* CwlBadInstructionException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlBadInstructionException.swift; path = Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlBadInstructionException.swift; sourceTree = "<group>"; };
D6C53CB242E67876DD3964EC5C775479 /* BeginWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeginWith.swift; path = Sources/Nimble/Matchers/BeginWith.swift; sourceTree = "<group>"; };
D9571DDE390A0012143BA7AAAE1D39DC /* NSString+QCKSelectorName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+QCKSelectorName.h"; path = "Sources/QuickObjectiveC/NSString+QCKSelectorName.h"; sourceTree = "<group>"; };
DA2A27C4B8DBD796FF529A57FD25B53F /* MatcherProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatcherProtocols.swift; path = Sources/Nimble/Matchers/MatcherProtocols.swift; sourceTree = "<group>"; };
DC7FD8B10E1977CD02A816659940FA9A /* Quick.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Quick.framework; path = Quick.framework; sourceTree = BUILT_PRODUCTS_DIR; };
DDB66FCF4920E93C91641504EBEC78D1 /* XCTestSuite+QuickTestSuiteBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "XCTestSuite+QuickTestSuiteBuilder.m"; path = "Sources/QuickObjectiveC/XCTestSuite+QuickTestSuiteBuilder.m"; sourceTree = "<group>"; };
DF7C0E600D08C899D8FE3A3AC0758905 /* Example.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Example.swift; path = Sources/Quick/Example.swift; sourceTree = "<group>"; };
DFABEEB10F2E9D33C12ECA566D5947A1 /* Quick-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Quick-dummy.m"; sourceTree = "<group>"; };
E15A0E5C2D8902D8B3F11BE86DE704B8 /* ErrorUtility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ErrorUtility.swift; path = Sources/Quick/ErrorUtility.swift; sourceTree = "<group>"; };
E2B70F4C3B97BBB91B73DC3D90599CC0 /* BundledCocoapodDynamicFrameworkError.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BundledCocoapodDynamicFrameworkError.xcconfig; sourceTree = "<group>"; };
F26BA5A6FE4D418C4B347B819197FA63 /* NimbleEnvironment.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleEnvironment.swift; path = Sources/Nimble/Adapters/NimbleEnvironment.swift; sourceTree = "<group>"; };
F2F54711B380CFE23B29ACEF631A3929 /* Stringers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Stringers.swift; path = Sources/Nimble/Utils/Stringers.swift; sourceTree = "<group>"; };
F3DC9FAE16E2DD68869AF1B29FA0A42A /* AdapterProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AdapterProtocols.swift; path = Sources/Nimble/Adapters/AdapterProtocols.swift; sourceTree = "<group>"; };
F49053029BC9DBBF70B83C3F3353E330 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
F795FA3DE9E15CB7DD017F791C55A8AC /* Nimble-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Nimble-dummy.m"; sourceTree = "<group>"; };
F9550ABBCFEA5EE7A657664A6BD9E1F7 /* CwlCatchBadInstruction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlCatchBadInstruction.h; path = Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlCatchBadInstruction.h; sourceTree = "<group>"; };
FB4B011BF1B4ECE6DC8D463CBA2E5EF7 /* DSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DSL.h; path = Sources/NimbleObjectiveC/DSL.h; sourceTree = "<group>"; };
FCCFAE0EFBD62266157ABDA892351069 /* AssertionDispatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionDispatcher.swift; path = Sources/Nimble/Adapters/AssertionDispatcher.swift; sourceTree = "<group>"; };
FCEC90FE3EA43490331DC53C67E7DE5B /* NMBObjCMatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NMBObjCMatcher.swift; path = Sources/Nimble/Adapters/NMBObjCMatcher.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
217C19B7A676330E2452ADAC9990F130 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
2CF28B873AE955B3F741145721B6C6DA /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
4BEBE96EF8894062C2812B57B7A8752B /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
FCCF29CE9AB45F78F41E706AE012927C /* Foundation.framework in Frameworks */,
6C2CF55D884009CCD2544C3821D6B8AC /* XCTest.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
5E91B2657555955FD0E61DCD6F93FB5C /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
A77389861A99F35EB67B0D7DF945F254 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
DBE2CE2F5ED086FC1DD44D4B176AEA5B /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
24EF979DB6A2B88464E07F5C5937EE14 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
EB9039E9BCDB4D984AA5C0BD1E6CC257 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
7D2D1573F588B2520E3F3AAB4D5E2664 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
0CFC02DB51BBD8B9F337A52362D403A3 /* Quick */ = {
isa = PBXGroup;
children = (
566EED392600B84A615AC7615D23F5CB /* Callsite.swift */,
462592DD75CDB244835F58221773956C /* Closures.swift */,
2D9DD9D6490CDC782AB0EBFF62EC7AEE /* Configuration.swift */,
0B420A0E967EACA015B9CF21B2C491A8 /* DSL.swift */,
E15A0E5C2D8902D8B3F11BE86DE704B8 /* ErrorUtility.swift */,
DF7C0E600D08C899D8FE3A3AC0758905 /* Example.swift */,
AAEA58BA3A98ABA9AF85ACD8AE3CED36 /* ExampleGroup.swift */,
1AD0D67F0098C6695A93CAE9B27528F4 /* ExampleHooks.swift */,
98BEFCA54D25BED3A87F8A8BC72FDE02 /* ExampleMetadata.swift */,
36F9E76E718B474FBEB8C1824AA1413A /* Filter.swift */,
BE05FF5E6FC72D2287373D241DFBB6F2 /* HooksPhase.swift */,
C81E409DD20CA59AA8A9A08E2B0B1B5F /* NSBundle+CurrentTestBundle.swift */,
D9571DDE390A0012143BA7AAAE1D39DC /* NSString+QCKSelectorName.h */,
30707A1F3230E95AF8C214F2C51E3477 /* NSString+QCKSelectorName.m */,
D2993A848EFF16A1B29C5BF7F7202F42 /* QCKDSL.h */,
C7E5C9CD6DE12A0615BB5F68D0BE93AB /* QCKDSL.m */,
1C5E4C955DDEF4822A80B37B5651F8ED /* Quick.h */,
9A4149CBE238527B194D1F9ABA8B1425 /* QuickConfiguration.h */,
2BD1C4C62388DB655C455E30CDF8012B /* QuickConfiguration.m */,
94B9FC85D7FEB2B0433347BA137CC7E1 /* QuickSelectedTestSuiteBuilder.swift */,
2C14CA30770ECA99AC2E8582C5D3C4DB /* QuickSpec.h */,
B89E09AD26974F1849359B57FE32A6AA /* QuickSpec.m */,
76C2AD2F63645F36689BC3DF18067258 /* QuickTestSuite.swift */,
04F10AA7D49AA59EDAA9771CD96960B9 /* SuiteHooks.swift */,
A3D11645B35A10BBA558B9BC99C1D340 /* URL+FileName.swift */,
4606F71071333AEDF06D8E31389AECC9 /* World.h */,
8BD3BF5EB0A249E68523B43B6402EA1C /* World.swift */,
A32B9E8B551B9F568B0B3BBE309347CE /* World+DSL.h */,
B93CBD5A8C953715B286CC18EBD89EA5 /* World+DSL.swift */,
DDB66FCF4920E93C91641504EBEC78D1 /* XCTestSuite+QuickTestSuiteBuilder.m */,
9F8FF48BA1B459080AB7C8E578367A73 /* Support Files */,
);
name = Quick;
path = Quick;
sourceTree = "<group>";
};
106FFAE978700A00EFB09BB727737926 /* BundledCocoapodDynamicFrameworkError */ = {
isa = PBXGroup;
children = (
64355BBB033EEE87B5AF85ECAFC929DE /* BundledCocoapodDynamicFrameworkError */,
3425673E0AA4B25B4772031DEB3D9A87 /* Frameworks */,
2D9FA85F193B31EC54E7450142D0BB59 /* Support Files */,
);
name = BundledCocoapodDynamicFrameworkError;
path = ../..;
sourceTree = "<group>";
};
1A23661A2974424F5CBDA417DE776BBF /* Classes */ = {
isa = PBXGroup;
children = (
685E5F5F71BE2701CEE0875080641645 /* MyLibSampleStruct.swift */,
);
name = Classes;
path = Classes;
sourceTree = "<group>";
};
2D9FA85F193B31EC54E7450142D0BB59 /* Support Files */ = {
isa = PBXGroup;
children = (
35BBA81DFF396202A64B128469338193 /* BundledCocoapodDynamicFrameworkError.modulemap */,
E2B70F4C3B97BBB91B73DC3D90599CC0 /* BundledCocoapodDynamicFrameworkError.xcconfig */,
26CF14022BDB9EFA6D376A94F941FCF3 /* BundledCocoapodDynamicFrameworkError-dummy.m */,
5F1257A75675CB02F43424CDA0594ACB /* BundledCocoapodDynamicFrameworkError-prefix.pch */,
01BA778E58B878BA8340310C755E3DA1 /* BundledCocoapodDynamicFrameworkError-umbrella.h */,
79DFA7B7F6D27B04CD9B28E80C83D81C /* Info.plist */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/BundledCocoapodDynamicFrameworkError";
sourceTree = "<group>";
};
3425673E0AA4B25B4772031DEB3D9A87 /* Frameworks */ = {
isa = PBXGroup;
children = (
9718A526666A7F613622901466B0C596 /* SampleDynamicLib.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
433CD3331B6C3787F473C941B61FC68F /* Frameworks */ = {
isa = PBXGroup;
children = (
9D9CFF97A2D41D7CB20A427D5386C7A6 /* iOS */,
);
name = Frameworks;
sourceTree = "<group>";
};
56264A85FB9BD721A9FC926B89A25D95 /* Pods */ = {
isa = PBXGroup;
children = (
8729ED7B1D5195A04BCEFF7577B57A23 /* Nimble */,
0CFC02DB51BBD8B9F337A52362D403A3 /* Quick */,
);
name = Pods;
sourceTree = "<group>";
};
64355BBB033EEE87B5AF85ECAFC929DE /* BundledCocoapodDynamicFrameworkError */ = {
isa = PBXGroup;
children = (
1A23661A2974424F5CBDA417DE776BBF /* Classes */,
);
name = BundledCocoapodDynamicFrameworkError;
path = BundledCocoapodDynamicFrameworkError;
sourceTree = "<group>";
};
7DB346D0F39D3F0E887471402A8071AB = {
isa = PBXGroup;
children = (
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */,
A9584F92D6119FD5B960A8BD6E2EBACE /* Development Pods */,
433CD3331B6C3787F473C941B61FC68F /* Frameworks */,
56264A85FB9BD721A9FC926B89A25D95 /* Pods */,
C8C2F6DF0FCD415DFF95408774B7BD46 /* Products */,
A7B1819B7E2954DA3974865EFECC2708 /* Targets Support Files */,
);
sourceTree = "<group>";
};
8729ED7B1D5195A04BCEFF7577B57A23 /* Nimble */ = {
isa = PBXGroup;
children = (
F3DC9FAE16E2DD68869AF1B29FA0A42A /* AdapterProtocols.swift */,
06E793A8549531332D1762623F08F9BF /* AllPass.swift */,
FCCFAE0EFBD62266157ABDA892351069 /* AssertionDispatcher.swift */,
33C4401213EBEC6BC1797D974E52767D /* AssertionRecorder.swift */,
C69EC1174FCE1660F05AF470B443E0E7 /* Async.swift */,
BC3735170CDCA6A1C7E7D0E1876ED22B /* AsyncMatcherWrapper.swift */,
71937B4B91A62971088D88CADF9D17CC /* BeAKindOf.swift */,
C97C4E97A47F53078887A61504367F9A /* BeAnInstanceOf.swift */,
AF53CCA7C0DCBC78C82FED3FBDD6BF88 /* BeCloseTo.swift */,
9C33CF42AD6E1A448E98D4CAFB155DAA /* BeEmpty.swift */,
D6C53CB242E67876DD3964EC5C775479 /* BeginWith.swift */,
2DEE1F436B68692319DE23FF7A16197E /* BeGreaterThan.swift */,
A9265D9D90339F897C0C6F78088E7BEB /* BeGreaterThanOrEqualTo.swift */,
10FFD83D547B8B236BCBB6812BC65762 /* BeIdenticalTo.swift */,
31F522E7A1E6B249CF89B55968863A58 /* BeLessThan.swift */,
104135CFA58204DC8EBF1167E28F5206 /* BeLessThanOrEqual.swift */,
226C1AC4144C4405F39189731DF06CEC /* BeLogical.swift */,
9C7B2E4FE5801A893DA4774DEC2C3985 /* BeNil.swift */,
8C64DCE9D714CA88C06BDCC413FD3661 /* BeVoid.swift */,
D1BBF1DEB58CE50279BE9C836B3DE1E1 /* Contain.swift */,
CCD0E5C7B919B722CBA4C68A93D55A7A /* CurrentTestCaseTracker.h */,
D6A47E312B3885EF64B81BD590AD21B4 /* CwlBadInstructionException.swift */,
F9550ABBCFEA5EE7A657664A6BD9E1F7 /* CwlCatchBadInstruction.h */,
4CEE6D090220683EB93ACD11A04038DD /* CwlCatchBadInstruction.m */,
5A4E497DD63B34CAF4112164C7D5C267 /* CwlCatchBadInstruction.swift */,
9BB1FA4E1DD555F459E31D6ECB9DB70C /* CwlCatchException.h */,
B4E171821B1D0ED4DB541E993A5B631F /* CwlCatchException.m */,
4C6329DD1EE75A68AA931A2192C28C69 /* CwlCatchException.swift */,
62A5C7D27930FA6D032FA0D83D8E8239 /* CwlDarwinDefinitions.swift */,
FB4B011BF1B4ECE6DC8D463CBA2E5EF7 /* DSL.h */,
91C1B940CAE99BBBBC563963CD22996B /* DSL.m */,
627AA9D56F221212717BC6C0D69D5091 /* DSL.swift */,
B2DAB46B24EC3101A9C139178DD3C5F2 /* DSL+Wait.swift */,
5058B4852C449730EE28E5F2CD349B24 /* EndWith.swift */,
C12298FB0CC92BD3BD16C958F3718416 /* Equal.swift */,
4EE1F2D1C9D5935F6B6B5CC49C89E323 /* Errors.swift */,
05E8C36BA4865751AB3994028E5BE98B /* Expectation.swift */,
5AC2EAD622CBF58EAD71675C54310955 /* Expression.swift */,
18CEB9B86795A0FDAA385DB81A49672B /* FailureMessage.swift */,
7FE7DAEFE89DD4FD50B980F9C9D6B7B2 /* Functional.swift */,
BA22155F3C9AB9685BF4ED3A389D109A /* HaveCount.swift */,
0BC4F2CA1ACAB7C5DC246E5970464CA7 /* mach_excServer.c */,
B85EE744366A34C7FDACC881DF2B63AB /* mach_excServer.h */,
1C9A478DF22318E51905AFC8BF831B2D /* Match.swift */,
ACB1FA806FF532E4E4DF8E6B4FFEB9C6 /* MatcherFunc.swift */,
DA2A27C4B8DBD796FF529A57FD25B53F /* MatcherProtocols.swift */,
A91D06EDAC9BBAD13C3148F1E86A9AD4 /* MatchError.swift */,
CE7DD158EC41F47A2796AB19C2CD1AD8 /* Nimble.h */,
F26BA5A6FE4D418C4B347B819197FA63 /* NimbleEnvironment.swift */,
7AA367A34E0B8C1B01749CCC12FD43C5 /* NimbleXCTestHandler.swift */,
72B50685A7115CB568F2F23A42E31BEA /* NMBExceptionCapture.h */,
86806CF3A6F7FB54DF0EEB9134380E4E /* NMBExceptionCapture.m */,
215D2DBBD2F1901DAD0BA635F194457A /* NMBExpectation.swift */,
FCEC90FE3EA43490331DC53C67E7DE5B /* NMBObjCMatcher.swift */,
D4621A1C4746AC480C7F889631FC8F57 /* NMBStringify.h */,
856B2E5E4EC8E2BD9ED45AAD6930A672 /* NMBStringify.m */,
525B5EB32452EE8123EA3E65FDC81622 /* PostNotification.swift */,
30778608352B15B9CFC7475AD8F932AB /* RaisesException.swift */,
208F66BD9FCF9E4BBBDCC434971F5113 /* SatisfyAnyOf.swift */,
623285D9DBDE57EEBB2AC7A9C9663905 /* SourceLocation.swift */,
F2F54711B380CFE23B29ACEF631A3929 /* Stringers.swift */,
4F0F33EFE650B5CE4774260C8F19455E /* ThrowAssertion.swift */,
4FBF7128876ED36020056A396B66AC27 /* ThrowError.swift */,
60A4CF4AA34D746BEB8F62EA84D9F202 /* XCTestObservationCenter+Register.m */,
F154A167CC9AC286CB008DF3527B8F65 /* Support Files */,
);
name = Nimble;
path = Nimble;
sourceTree = "<group>";
};
9D9CFF97A2D41D7CB20A427D5386C7A6 /* iOS */ = {
isa = PBXGroup;
children = (
32DF21EF8268E32D359CD23F2CF3EFE3 /* Foundation.framework */,
AECEA2EDA41473899EE391CA038EDC38 /* XCTest.framework */,
);
name = iOS;
sourceTree = "<group>";
};
9F8FF48BA1B459080AB7C8E578367A73 /* Support Files */ = {
isa = PBXGroup;
children = (
6F579A910F8F80938916FAB83C722CBB /* Info.plist */,
9AD041EED5C6A1B6A82C71C9E5AA3FE1 /* Quick.modulemap */,
473162EAADE47F759500100475A4A4BE /* Quick.xcconfig */,
DFABEEB10F2E9D33C12ECA566D5947A1 /* Quick-dummy.m */,
4B7E39158C032742F5DB8A1F5F944A38 /* Quick-prefix.pch */,
15E2114ED8AE0D3C939FFE5084E2DAEC /* Quick-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/Quick";
sourceTree = "<group>";
};
A5CC0E1256EE0307E9CA78908A71BBE1 /* Pods-BundledCocoapodDynamicFrameworkError_Tests */ = {
isa = PBXGroup;
children = (
F49053029BC9DBBF70B83C3F3353E330 /* Info.plist */,
265D96DF4DDEE0924C0AACF97DF9FCDA /* Pods-BundledCocoapodDynamicFrameworkError_Tests.modulemap */,
C56BA84222AF5A8B84281D3154C43337 /* Pods-BundledCocoapodDynamicFrameworkError_Tests-acknowledgements.markdown */,
10A6022BBC6CFFF3D064AB4D0A0EBD65 /* Pods-BundledCocoapodDynamicFrameworkError_Tests-acknowledgements.plist */,
14812E29EC1CCFBA269634E0F4F119F5 /* Pods-BundledCocoapodDynamicFrameworkError_Tests-dummy.m */,
12623DB7EBAF9117748694F585BC335F /* Pods-BundledCocoapodDynamicFrameworkError_Tests-frameworks.sh */,
A088E4DF9DD7E8C46B365AC1611CBA2F /* Pods-BundledCocoapodDynamicFrameworkError_Tests-resources.sh */,
793D590CAE3CEEA92E2356D00E61D480 /* Pods-BundledCocoapodDynamicFrameworkError_Tests-umbrella.h */,
9FF015543A79F405F16A8E9954BE41CA /* Pods-BundledCocoapodDynamicFrameworkError_Tests.debug.xcconfig */,
798CDB8F3AEDDFFB3687432B6EA0218E /* Pods-BundledCocoapodDynamicFrameworkError_Tests.release.xcconfig */,
);
name = "Pods-BundledCocoapodDynamicFrameworkError_Tests";
path = "Target Support Files/Pods-BundledCocoapodDynamicFrameworkError_Tests";
sourceTree = "<group>";
};
A7B1819B7E2954DA3974865EFECC2708 /* Targets Support Files */ = {
isa = PBXGroup;
children = (
C5FB8D8B6336B033B2FF321089F59350 /* Pods-BundledCocoapodDynamicFrameworkError_Example */,
A5CC0E1256EE0307E9CA78908A71BBE1 /* Pods-BundledCocoapodDynamicFrameworkError_Tests */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
A9584F92D6119FD5B960A8BD6E2EBACE /* Development Pods */ = {
isa = PBXGroup;
children = (
106FFAE978700A00EFB09BB727737926 /* BundledCocoapodDynamicFrameworkError */,
);
name = "Development Pods";
sourceTree = "<group>";
};
C5FB8D8B6336B033B2FF321089F59350 /* Pods-BundledCocoapodDynamicFrameworkError_Example */ = {
isa = PBXGroup;
children = (
C5EE61FF5746483205134901C54EC0F5 /* Info.plist */,
65F1C61BD1A7E21B3D42D1EE6CE49098 /* Pods-BundledCocoapodDynamicFrameworkError_Example.modulemap */,
B641D1923783CCE634357A9A25B3148F /* Pods-BundledCocoapodDynamicFrameworkError_Example-acknowledgements.markdown */,
05AFB32F669F92CF4FDA35894F080718 /* Pods-BundledCocoapodDynamicFrameworkError_Example-acknowledgements.plist */,
68E269F4378F91E49DD6461A200CC147 /* Pods-BundledCocoapodDynamicFrameworkError_Example-dummy.m */,
0129A9CB2AAF99D88B92AF83A508DF57 /* Pods-BundledCocoapodDynamicFrameworkError_Example-frameworks.sh */,
87FF3D29D80196016229C00A02FD4CF7 /* Pods-BundledCocoapodDynamicFrameworkError_Example-resources.sh */,
14EEA8A4B1CCA9FD45BBE0B07183D1A3 /* Pods-BundledCocoapodDynamicFrameworkError_Example-umbrella.h */,
3230AF5E0D6737D8BFFD7A13667B862D /* Pods-BundledCocoapodDynamicFrameworkError_Example.debug.xcconfig */,
D1E8474A7C294A3379D035EA35A0593A /* Pods-BundledCocoapodDynamicFrameworkError_Example.release.xcconfig */,
);
name = "Pods-BundledCocoapodDynamicFrameworkError_Example";
path = "Target Support Files/Pods-BundledCocoapodDynamicFrameworkError_Example";
sourceTree = "<group>";
};
C8C2F6DF0FCD415DFF95408774B7BD46 /* Products */ = {
isa = PBXGroup;
children = (
13CD77BA2C07B04A72504525A712314C /* BundledCocoapodDynamicFrameworkError.framework */,
A6421B48B54DA64CFE0475989DA0ADD5 /* Nimble.framework */,
B5F9466E65F53499522F0F5665FB075F /* Pods_BundledCocoapodDynamicFrameworkError_Example.framework */,
CC63AFDBFCF85247F7452E8BF1290F7D /* Pods_BundledCocoapodDynamicFrameworkError_Tests.framework */,
DC7FD8B10E1977CD02A816659940FA9A /* Quick.framework */,
);
name = Products;
sourceTree = "<group>";
};
F154A167CC9AC286CB008DF3527B8F65 /* Support Files */ = {
isa = PBXGroup;
children = (
32343C8281B13DD7FE4F6D40BDF37C6A /* Info.plist */,
14537A5EC332D4F5F8A2D483B328CC37 /* Nimble.modulemap */,
954B5272EA2120AA3260D71B6BEF8007 /* Nimble.xcconfig */,
F795FA3DE9E15CB7DD017F791C55A8AC /* Nimble-dummy.m */,
88A9381D91255401863A2174DDDDC0A3 /* Nimble-prefix.pch */,
BCBDD456B535FEADB8D72DB83652D74D /* Nimble-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/Nimble";
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
2ACF6192E10A038A21EFA2156C9F7EA3 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
F693D0A9E0D05F815A85DC258E75AF8D /* CurrentTestCaseTracker.h in Headers */,
65F5217D44A557FC16218DE5DE348C35 /* CwlCatchBadInstruction.h in Headers */,
87DD62F200DAB5E1D701AB9F94D1D422 /* CwlCatchException.h in Headers */,
0ECEEBC712D404AA6CF1E76A9284BFF9 /* DSL.h in Headers */,
B093484B1637B3D3AF65DF2232FDBADC /* mach_excServer.h in Headers */,
76036D32625A56D480D84AA46961EF91 /* Nimble-umbrella.h in Headers */,
469E9C3ED9FD6009F7C9AAF9E537E212 /* Nimble.h in Headers */,
917949F596E1188261FC59214782C3D9 /* NMBExceptionCapture.h in Headers */,
27B262F95D3CF9E3C74541A41929691C /* NMBStringify.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
4A5662993E8048FE776E986B790D3357 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
F8C5C8D87A543BC37AE2F1EA1F146387 /* Pods-BundledCocoapodDynamicFrameworkError_Example-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
798355171534F56A0514A82E5E56C5C7 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
B09F3F735197BEB2B3EC7F02BB65B5CC /* Pods-BundledCocoapodDynamicFrameworkError_Tests-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B1B828DE3B7E97B59ABDA320B7EE0EFF /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
E82F718D868347FDA534830AC75FC9D3 /* NSString+QCKSelectorName.h in Headers */,
7C195C07D6164C8F16DB69D98A6A3B2A /* QCKDSL.h in Headers */,
70ACDB5C071386CAB7A2B01D949176CE /* Quick-umbrella.h in Headers */,
C3DD135B7A45F4B745696EC0975AD770 /* Quick.h in Headers */,
C355177209A86B87C6BEE8B88236879A /* QuickConfiguration.h in Headers */,
A90195D555743A874FA2C1EA9220611A /* QuickSpec.h in Headers */,
626EEA21A34CCB064D9944CBEB629AC2 /* World+DSL.h in Headers */,
820B898C334B1F2F7DB995E3CE15360F /* World.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
DAA01A6E89F595F2B831041693618215 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
3E8D02F700DE9B88894E6001F7B8A803 /* BundledCocoapodDynamicFrameworkError-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
1321E318D10CFDC9F5B93A7952492CCD /* Nimble */ = {
isa = PBXNativeTarget;
buildConfigurationList = B1DBAFB75A3AF98C8C6B0863BDC7A2E3 /* Build configuration list for PBXNativeTarget "Nimble" */;
buildPhases = (
3C4AABA28564F6F29FE8E3F38226690A /* Sources */,
DBE2CE2F5ED086FC1DD44D4B176AEA5B /* Frameworks */,
2ACF6192E10A038A21EFA2156C9F7EA3 /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = Nimble;
productName = Nimble;
productReference = A6421B48B54DA64CFE0475989DA0ADD5 /* Nimble.framework */;
productType = "com.apple.product-type.framework";
};
28EC04E45B2A2A40A1AC36DE37202687 /* BundledCocoapodDynamicFrameworkError */ = {
isa = PBXNativeTarget;
buildConfigurationList = 0C8622689B843B7D862A587AEDE6CA0D /* Build configuration list for PBXNativeTarget "BundledCocoapodDynamicFrameworkError" */;
buildPhases = (
D3B27A2C43C3BC6AFB4B324940D79E19 /* Sources */,
217C19B7A676330E2452ADAC9990F130 /* Frameworks */,
DAA01A6E89F595F2B831041693618215 /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = BundledCocoapodDynamicFrameworkError;
productName = BundledCocoapodDynamicFrameworkError;
productReference = 13CD77BA2C07B04A72504525A712314C /* BundledCocoapodDynamicFrameworkError.framework */;
productType = "com.apple.product-type.framework";
};
56C393CB4F4D2FC75BA3C752DA2DFFED /* Pods-BundledCocoapodDynamicFrameworkError_Tests */ = {
isa = PBXNativeTarget;
buildConfigurationList = BCF59CEBE14892381B219C853B62F8A9 /* Build configuration list for PBXNativeTarget "Pods-BundledCocoapodDynamicFrameworkError_Tests" */;
buildPhases = (
26F79B69963E5B3E8F6CFED8574376F9 /* Sources */,
EB9039E9BCDB4D984AA5C0BD1E6CC257 /* Frameworks */,
798355171534F56A0514A82E5E56C5C7 /* Headers */,
);
buildRules = (
);
dependencies = (
06D8929AF3AA3FDD8666DF6A31E994B5 /* PBXTargetDependency */,
025F76926049F8227ECD500C36D64CE6 /* PBXTargetDependency */,
);
name = "Pods-BundledCocoapodDynamicFrameworkError_Tests";
productName = "Pods-BundledCocoapodDynamicFrameworkError_Tests";
productReference = CC63AFDBFCF85247F7452E8BF1290F7D /* Pods_BundledCocoapodDynamicFrameworkError_Tests.framework */;
productType = "com.apple.product-type.framework";
};
6B7ECAF540C7A0B485EB6DF02ABF803A /* Pods-BundledCocoapodDynamicFrameworkError_Example */ = {
isa = PBXNativeTarget;
buildConfigurationList = E98D42307B1AD92A01AF48BCC19DCFBE /* Build configuration list for PBXNativeTarget "Pods-BundledCocoapodDynamicFrameworkError_Example" */;
buildPhases = (
F113D9AEC07BE2F6F8DA14CADA726866 /* Sources */,
5E91B2657555955FD0E61DCD6F93FB5C /* Frameworks */,
4A5662993E8048FE776E986B790D3357 /* Headers */,
);
buildRules = (
);
dependencies = (
03E8657E25EAA2DFCA73EFDD2D69ECDB /* PBXTargetDependency */,
);
name = "Pods-BundledCocoapodDynamicFrameworkError_Example";
productName = "Pods-BundledCocoapodDynamicFrameworkError_Example";
productReference = B5F9466E65F53499522F0F5665FB075F /* Pods_BundledCocoapodDynamicFrameworkError_Example.framework */;
productType = "com.apple.product-type.framework";
};
98DC497E544A9F9CB7B7D9E51F1FE26B /* Quick */ = {
isa = PBXNativeTarget;
buildConfigurationList = 88378F4A59A37041649ABD92F092A64A /* Build configuration list for PBXNativeTarget "Quick" */;
buildPhases = (
7613DB2BA1A2BA3DDE3EC9CAC5E699A2 /* Sources */,
4BEBE96EF8894062C2812B57B7A8752B /* Frameworks */,
B1B828DE3B7E97B59ABDA320B7EE0EFF /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = Quick;
productName = Quick;
productReference = DC7FD8B10E1977CD02A816659940FA9A /* Quick.framework */;
productType = "com.apple.product-type.framework";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
D41D8CD98F00B204E9800998ECF8427E /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0730;
LastUpgradeCheck = 0700;
};
buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = 7DB346D0F39D3F0E887471402A8071AB;
productRefGroup = C8C2F6DF0FCD415DFF95408774B7BD46 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
28EC04E45B2A2A40A1AC36DE37202687 /* BundledCocoapodDynamicFrameworkError */,
1321E318D10CFDC9F5B93A7952492CCD /* Nimble */,
6B7ECAF540C7A0B485EB6DF02ABF803A /* Pods-BundledCocoapodDynamicFrameworkError_Example */,
56C393CB4F4D2FC75BA3C752DA2DFFED /* Pods-BundledCocoapodDynamicFrameworkError_Tests */,
98DC497E544A9F9CB7B7D9E51F1FE26B /* Quick */,
);
};
/* End PBXProject section */
/* Begin PBXSourcesBuildPhase section */
26F79B69963E5B3E8F6CFED8574376F9 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
AE204BF727CFE27CE4F658D23E1ED9AE /* Pods-BundledCocoapodDynamicFrameworkError_Tests-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
3C4AABA28564F6F29FE8E3F38226690A /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
047A68C646E00EB6D7D4D7343B801D09 /* AdapterProtocols.swift in Sources */,
DCEE854E62441E78FED15CC994497F61 /* AllPass.swift in Sources */,
74FD712F3B503891B6BD9E5CD287E481 /* AssertionDispatcher.swift in Sources */,
F9E05A63D447B51E008B89731192FE7F /* AssertionRecorder.swift in Sources */,
AC29CC89E22273BF0D0DC2C841B7524C /* Async.swift in Sources */,
551440A0F92574039C1D2EB39227D6B8 /* AsyncMatcherWrapper.swift in Sources */,
F60D221B548716DF35193FC2CF244676 /* BeAKindOf.swift in Sources */,
A448F837592E21D9387322E8DA0DD93F /* BeAnInstanceOf.swift in Sources */,
9544A4EEC2A8448743ECA9981F88B60F /* BeCloseTo.swift in Sources */,
9AF235C16362BA00BFBF12147907E953 /* BeEmpty.swift in Sources */,
AB255C27EF10E742C6567775022F49D5 /* BeginWith.swift in Sources */,
07722FBCF6B380961B9D2832D5883F45 /* BeGreaterThan.swift in Sources */,
1C50F54510D5C2B2AD84D7B74A6EDEBB /* BeGreaterThanOrEqualTo.swift in Sources */,
A33F1754198E8E8CCC7087F6176FFDC8 /* BeIdenticalTo.swift in Sources */,
6E397D9FB11A47E48D70287D734B12B2 /* BeLessThan.swift in Sources */,
FAB4ECE0C5039D99BB7173880670871D /* BeLessThanOrEqual.swift in Sources */,
0AEC20AACF9B10846830274E3B2AA6FD /* BeLogical.swift in Sources */,
599669823A2EED2928C77F301F6B0515 /* BeNil.swift in Sources */,
78F3DE174B4F8D368EF8EEFD7EE62087 /* BeVoid.swift in Sources */,
8507F4BF7437EB40A3626EDCC68BFF6D /* Contain.swift in Sources */,
737E19F3254F5929263982C29237C0BA /* CwlBadInstructionException.swift in Sources */,
3915DBB4731CB17B255A7FE86E240B6E /* CwlCatchBadInstruction.m in Sources */,
6CDBA48C3A8621E4EE1DAFFE240F0D82 /* CwlCatchBadInstruction.swift in Sources */,
947162383483B6391F8CDF38249BFBD2 /* CwlCatchException.m in Sources */,
F4A1B7A059AAA6727EB70E58E09332A4 /* CwlCatchException.swift in Sources */,
BB10A2D0B1EE5B1BA811354116F83E3F /* CwlDarwinDefinitions.swift in Sources */,
86FFB76B2EDCF4AE79CC4C0BD8A0FE9A /* DSL+Wait.swift in Sources */,
1C7CA1FAFBF8B865596C739FEA39CDEE /* DSL.m in Sources */,
17261E344C2027602431A636759AC7F2 /* DSL.swift in Sources */,
8654571F855691C23B7B8E61B2141944 /* EndWith.swift in Sources */,
BF3AF1D2B46E09E2B3DCC824E6C1F5AF /* Equal.swift in Sources */,
7F6750C7B1847733370B18C4CBFE32DF /* Errors.swift in Sources */,
CB7558CCDD935C9E82BBF454022ED1D3 /* Expectation.swift in Sources */,
8015239010C1D642F14C105F8FF8E035 /* Expression.swift in Sources */,
7D6269A3CFE53C28DAA6B92E8FC017A7 /* FailureMessage.swift in Sources */,
FCFFEB587281358CFF05A65ED9E94C12 /* Functional.swift in Sources */,
CE3FA6AE0944D4AE737F0E57CFF4A615 /* HaveCount.swift in Sources */,
50B80F12A9BAE302F07F6CF94752F462 /* mach_excServer.c in Sources */,
A91166D0A5E8F1D5D5377622C381C045 /* Match.swift in Sources */,
B9BD565DAB07F8E2288A960A1D3EFAC1 /* MatcherFunc.swift in Sources */,
23E2E1E02FE79EE1E1688CBBAA777297 /* MatcherProtocols.swift in Sources */,
CE4CEF6328E255B380E2B2692B351CF8 /* MatchError.swift in Sources */,
9E95D6E15DBE9B0FC92AAF60D42D1464 /* Nimble-dummy.m in Sources */,
F9D61EB5EEB799105913685722FF4C9C /* NimbleEnvironment.swift in Sources */,
E5CCEF0B83F8272D10671C01AAE4FFA0 /* NimbleXCTestHandler.swift in Sources */,
DC32331BE565888E694E1321BB1D80F5 /* NMBExceptionCapture.m in Sources */,
8C30EAD5FFD28B387099B41C74657A67 /* NMBExpectation.swift in Sources */,
AC0B24EF198E3BEDFCC9F25D7B8EEDAB /* NMBObjCMatcher.swift in Sources */,
127CD37052B8E0BC645D83D4664F59D4 /* NMBStringify.m in Sources */,
EBA52C16F42E42A1824D87C284F4A60C /* PostNotification.swift in Sources */,
4F3F103945CC52D0A3B8A891BB0E21C4 /* RaisesException.swift in Sources */,
62744EF299751FB49B5FCD81D8C8FFF7 /* SatisfyAnyOf.swift in Sources */,
234BFC45ACAC4A8FB945EA17B6A74B0B /* SourceLocation.swift in Sources */,
9BEBD1791C233763A8DC13080BFB99C9 /* Stringers.swift in Sources */,
110A640A9BE45841BA938B4C29EF5446 /* ThrowAssertion.swift in Sources */,
22C1DE74D494C10BBE727F239A68447D /* ThrowError.swift in Sources */,
D88575ED37BC462E8130CDBEFE9EA308 /* XCTestObservationCenter+Register.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
7613DB2BA1A2BA3DDE3EC9CAC5E699A2 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
4F6181777C0F9406F0F3B03DA484BFFA /* Callsite.swift in Sources */,
AD83DD82160B7FAA780CCED11819A8E7 /* Closures.swift in Sources */,
BB4792C2A2FD9AE429B10D32A1E7A9A2 /* Configuration.swift in Sources */,
8DD6DA4C48725337756141937B2FEDA5 /* DSL.swift in Sources */,
FD08B26CB382B836BDECB858D70DC2BE /* ErrorUtility.swift in Sources */,
830A1C56BCD01C806DDB40B7E1698516 /* Example.swift in Sources */,
4AD1E03A4260412AB440741189CF473E /* ExampleGroup.swift in Sources */,
58FF3652157FCF0EEF9FD53BE7FE68D8 /* ExampleHooks.swift in Sources */,
FC48801200DEC208BA2E505D79DD36EE /* ExampleMetadata.swift in Sources */,
8689E7DB20EA9F97C3E5734E07949AAE /* Filter.swift in Sources */,
646BAA09DA09964B6F14B3DB9AF7585C /* HooksPhase.swift in Sources */,
84810DED9E411C6963FA8E1AE1BA1169 /* NSBundle+CurrentTestBundle.swift in Sources */,
00CCF509443FC78BDAE702E9D0DDD6AC /* NSString+QCKSelectorName.m in Sources */,
A880B2869390537000BD75D63520B498 /* QCKDSL.m in Sources */,
F1AD12B879D2FCCA7A6005ABA6ED511C /* Quick-dummy.m in Sources */,
2BDE71B48443C53646E987973F98DD25 /* QuickConfiguration.m in Sources */,
D71E426286D456BA0C6B40E1C2CF0907 /* QuickSelectedTestSuiteBuilder.swift in Sources */,
5442B9FFC72480654D374057CFB06C77 /* QuickSpec.m in Sources */,
72AB4EB5F44DFD9FE82CABA00F261E79 /* QuickTestSuite.swift in Sources */,
E38CC4BBBF6EFC751D718C2ABEF705C5 /* SuiteHooks.swift in Sources */,
53DF2588D6341C63D54AB328A2F265F5 /* URL+FileName.swift in Sources */,
33C8C9F68FC5C38B3881B5331EA82142 /* World+DSL.swift in Sources */,
E11C9D2FED44BD438A9DFFEA4C409066 /* World.swift in Sources */,
71E5FCBC00DCAB5C203B3448C4C058E2 /* XCTestSuite+QuickTestSuiteBuilder.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D3B27A2C43C3BC6AFB4B324940D79E19 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
E5884A29E0928CCEAD5D67695D5B190A /* BundledCocoapodDynamicFrameworkError-dummy.m in Sources */,
42897954EE5E0DDDCABF18497305CF6B /* MyLibSampleStruct.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
F113D9AEC07BE2F6F8DA14CADA726866 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
556A477ADA7B5F8EC5488ACCF0FFB907 /* Pods-BundledCocoapodDynamicFrameworkError_Example-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
025F76926049F8227ECD500C36D64CE6 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = Quick;
target = 98DC497E544A9F9CB7B7D9E51F1FE26B /* Quick */;
targetProxy = EAFC997F12CDE6856BFFBC10FE5550E4 /* PBXContainerItemProxy */;
};
03E8657E25EAA2DFCA73EFDD2D69ECDB /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = BundledCocoapodDynamicFrameworkError;
target = 28EC04E45B2A2A40A1AC36DE37202687 /* BundledCocoapodDynamicFrameworkError */;
targetProxy = 5C2616C7853D58192D39C62A7693522B /* PBXContainerItemProxy */;
};
06D8929AF3AA3FDD8666DF6A31E994B5 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = Nimble;
target = 1321E318D10CFDC9F5B93A7952492CCD /* Nimble */;
targetProxy = B2F193E3FCA24D4B86BB2F0C31968315 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */
04020B9E0797A7C9CA7A101EA9312572 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 954B5272EA2120AA3260D71B6BEF8007 /* Nimble.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_NO_COMMON_BLOCKS = YES;
GCC_PREFIX_HEADER = "Target Support Files/Nimble/Nimble-prefix.pch";
INFOPLIST_FILE = "Target Support Files/Nimble/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MODULEMAP_FILE = "Target Support Files/Nimble/Nimble.modulemap";
MTL_ENABLE_DEBUG_INFO = NO;
PRODUCT_NAME = Nimble;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_VERSION = 3.0;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
1EBCE18344EF61DAF934AEB168F046D6 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 9FF015543A79F405F16A8E9954BE41CA /* Pods-BundledCocoapodDynamicFrameworkError_Tests.debug.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = dwarf;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_STRICT_OBJC_MSGSEND = YES;