Skip to content

Commit 077f4b4

Browse files
author
Oleksii Dykan
committed
Add JSONSerialization tests
1 parent dc01b60 commit 077f4b4

File tree

3 files changed

+1019
-40
lines changed

3 files changed

+1019
-40
lines changed

LucJSON.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88

99
/* Begin PBXBuildFile section */
1010
CEAC7C751E72B303000DACCC /* LucJSON.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEAC7C6B1E72B303000DACCC /* LucJSON.framework */; };
11-
CEAC7C7A1E72B303000DACCC /* LucJSONTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEAC7C791E72B303000DACCC /* LucJSONTests.swift */; };
1211
CEAC7C7C1E72B303000DACCC /* LucJSON.h in Headers */ = {isa = PBXBuildFile; fileRef = CEAC7C6E1E72B303000DACCC /* LucJSON.h */; settings = {ATTRIBUTES = (Public, ); }; };
1312
CEAC7C861E72B5AD000DACCC /* JSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEAC7C851E72B5AD000DACCC /* JSON.swift */; };
1413
CEAC7C8A1E72E755000DACCC /* JSONTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEAC7C891E72E755000DACCC /* JSONTests.swift */; };
1514
CEAC7C8C1E72EDD0000DACCC /* JSONSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEAC7C8B1E72EDD0000DACCC /* JSONSerialization.swift */; };
1615
CEAC7C901E72F4A5000DACCC /* JSONWriter.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEAC7C8F1E72F4A5000DACCC /* JSONWriter.swift */; };
1716
CEAC7C921E72F54D000DACCC /* JSONReader.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEAC7C911E72F54D000DACCC /* JSONReader.swift */; };
17+
CEAC7C941E72F6E1000DACCC /* JSONSerializationTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEAC7C931E72F6E1000DACCC /* JSONSerializationTest.swift */; };
1818
/* End PBXBuildFile section */
1919

2020
/* Begin PBXContainerItemProxy section */
@@ -32,13 +32,13 @@
3232
CEAC7C6E1E72B303000DACCC /* LucJSON.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LucJSON.h; sourceTree = "<group>"; };
3333
CEAC7C6F1E72B303000DACCC /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
3434
CEAC7C741E72B303000DACCC /* LucJSONTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LucJSONTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
35-
CEAC7C791E72B303000DACCC /* LucJSONTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LucJSONTests.swift; sourceTree = "<group>"; };
3635
CEAC7C7B1E72B303000DACCC /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
3736
CEAC7C851E72B5AD000DACCC /* JSON.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JSON.swift; sourceTree = "<group>"; };
3837
CEAC7C891E72E755000DACCC /* JSONTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JSONTests.swift; sourceTree = "<group>"; };
3938
CEAC7C8B1E72EDD0000DACCC /* JSONSerialization.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JSONSerialization.swift; sourceTree = "<group>"; };
4039
CEAC7C8F1E72F4A5000DACCC /* JSONWriter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JSONWriter.swift; sourceTree = "<group>"; };
4140
CEAC7C911E72F54D000DACCC /* JSONReader.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JSONReader.swift; sourceTree = "<group>"; };
41+
CEAC7C931E72F6E1000DACCC /* JSONSerializationTest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JSONSerializationTest.swift; sourceTree = "<group>"; };
4242
/* End PBXFileReference section */
4343

4444
/* Begin PBXFrameworksBuildPhase section */
@@ -94,8 +94,8 @@
9494
CEAC7C781E72B303000DACCC /* LucJSONTests */ = {
9595
isa = PBXGroup;
9696
children = (
97-
CEAC7C791E72B303000DACCC /* LucJSONTests.swift */,
9897
CEAC7C891E72E755000DACCC /* JSONTests.swift */,
98+
CEAC7C931E72F6E1000DACCC /* JSONSerializationTest.swift */,
9999
CEAC7C7B1E72B303000DACCC /* Info.plist */,
100100
);
101101
path = LucJSONTests;
@@ -225,8 +225,8 @@
225225
isa = PBXSourcesBuildPhase;
226226
buildActionMask = 2147483647;
227227
files = (
228-
CEAC7C7A1E72B303000DACCC /* LucJSONTests.swift in Sources */,
229228
CEAC7C8A1E72E755000DACCC /* JSONTests.swift in Sources */,
229+
CEAC7C941E72F6E1000DACCC /* JSONSerializationTest.swift in Sources */,
230230
);
231231
runOnlyForDeploymentPostprocessing = 0;
232232
};

0 commit comments

Comments
 (0)