Skip to content

Commit c5488b5

Browse files
Merge pull request #6 from SomeRandomiOSDev/1.1.0_Testing
Created in-house assert testing functions for better propagating source method/type of assertion failures
2 parents c753588 + 1bb883f commit c5488b5

File tree

7 files changed

+519
-455
lines changed

7 files changed

+519
-455
lines changed

Complex.xcodeproj/project.pbxproj

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@
3232
/* End PBXAggregateTarget section */
3333

3434
/* Begin PBXBuildFile section */
35+
DD6F08CD240077C300749359 /* TestingBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6F08CC240077C300749359 /* TestingBase.swift */; };
36+
DD6F08CE240077C300749359 /* TestingBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6F08CC240077C300749359 /* TestingBase.swift */; };
37+
DD6F08CF240077C300749359 /* TestingBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6F08CC240077C300749359 /* TestingBase.swift */; };
3538
DDB8120723F59B760079FEB5 /* Complex.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDB8120623F59B760079FEB5 /* Complex.swift */; };
3639
DDB8120823F59B760079FEB5 /* Complex.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDB8120623F59B760079FEB5 /* Complex.swift */; };
3740
DDB8120923F59B760079FEB5 /* Complex.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDB8120623F59B760079FEB5 /* Complex.swift */; };
@@ -146,6 +149,8 @@
146149
/* End PBXContainerItemProxy section */
147150

148151
/* Begin PBXFileReference section */
152+
DD6F08CC240077C300749359 /* TestingBase.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestingBase.swift; sourceTree = "<group>"; };
153+
DD6F08D02400808300749359 /* codecov.yml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = codecov.yml; sourceTree = "<group>"; };
149154
DDB8120623F59B760079FEB5 /* Complex.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Complex.swift; sourceTree = "<group>"; };
150155
DDB8120B23F5A8E80079FEB5 /* Functions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Functions.swift; sourceTree = "<group>"; };
151156
DDB8121023F5AEB10079FEB5 /* ComplexTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ComplexTests.swift; sourceTree = "<group>"; };
@@ -302,6 +307,7 @@
302307
DDFEEC4023EF13910096015C /* ComplexTests */ = {
303308
isa = PBXGroup;
304309
children = (
310+
DD6F08CC240077C300749359 /* TestingBase.swift */,
305311
DDB8121023F5AEB10079FEB5 /* ComplexTests.swift */,
306312
DDB8126623F7B7F40079FEB5 /* ComplexArithmeticTests.swift */,
307313
DDB8122023F656AC0079FEB5 /* FunctionsTests.swift */,
@@ -325,6 +331,7 @@
325331
DDFEECAB23F1BA550096015C /* Complex.podspec */,
326332
DDB8121423F634770079FEB5 /* Cartfile.private */,
327333
DDFEECAC23F1BA550096015C /* Package.swift */,
334+
DD6F08D02400808300749359 /* codecov.yml */,
328335
DDFEECAE23F1BA5E0096015C /* .swiftlint.yml */,
329336
DDFEECAD23F1BA5E0096015C /* .travis.yml */,
330337
DDFEECAF23F1BA680096015C /* README.md */,
@@ -699,6 +706,7 @@
699706
buildActionMask = 2147483647;
700707
files = (
701708
DDB8126723F7B7F40079FEB5 /* ComplexArithmeticTests.swift in Sources */,
709+
DD6F08CD240077C300749359 /* TestingBase.swift in Sources */,
702710
DDB8121123F5AEB10079FEB5 /* ComplexTests.swift in Sources */,
703711
DDB8122123F656AC0079FEB5 /* FunctionsTests.swift in Sources */,
704712
);
@@ -720,6 +728,7 @@
720728
buildActionMask = 2147483647;
721729
files = (
722730
DDB8126823F7B7F40079FEB5 /* ComplexArithmeticTests.swift in Sources */,
731+
DD6F08CE240077C300749359 /* TestingBase.swift in Sources */,
723732
DDB8121223F5AEB10079FEB5 /* ComplexTests.swift in Sources */,
724733
DDB8122223F656AC0079FEB5 /* FunctionsTests.swift in Sources */,
725734
);
@@ -741,6 +750,7 @@
741750
buildActionMask = 2147483647;
742751
files = (
743752
DDB8126923F7B7F40079FEB5 /* ComplexArithmeticTests.swift in Sources */,
753+
DD6F08CF240077C300749359 /* TestingBase.swift in Sources */,
744754
DDB8121323F5AEB10079FEB5 /* ComplexTests.swift in Sources */,
745755
DDB8122323F656AC0079FEB5 /* FunctionsTests.swift in Sources */,
746756
);

0 commit comments

Comments
 (0)