Skip to content

Commit a31f26b

Browse files
committed
expose all tests for linux
1 parent 95338eb commit a31f26b

File tree

2 files changed

+20
-7
lines changed

2 files changed

+20
-7
lines changed

KakaJSON.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -301,11 +301,11 @@
301301
627B5E762320EC760046E23D /* Model_To_JSON */ = {
302302
isa = PBXGroup;
303303
children = (
304-
627B5E772320EC760046E23D /* MTJ_04_KeyMapping.swift */,
305-
627B5E782320EC760046E23D /* MTJ_05_CustomValue.swift */,
306-
627B5E792320EC760046E23D /* MTJ_02_NestedModel.swift */,
307304
627B5E7A2320EC760046E23D /* MTJ_01_Basic.swift */,
305+
627B5E792320EC760046E23D /* MTJ_02_NestedModel.swift */,
308306
627B5E7B2320EC760046E23D /* MTJ_03_ModelArray.swift */,
307+
627B5E772320EC760046E23D /* MTJ_04_KeyMapping.swift */,
308+
627B5E782320EC760046E23D /* MTJ_05_CustomValue.swift */,
309309
);
310310
path = Model_To_JSON;
311311
sourceTree = "<group>";
@@ -324,11 +324,11 @@
324324
children = (
325325
627B5E802320EC760046E23D /* JTM_01_Basic.swift */,
326326
627B5E812320EC760046E23D /* JTM_02_DataType.swift */,
327-
627B5E822320EC760046E23D /* JTM_06_CustomValue.swift */,
327+
627B5E862320EC760046E23D /* JTM_03_NestedModel.swift */,
328+
627B5E852320EC760046E23D /* JTM_04_ModelArray.swift */,
328329
627B5E832320EC760046E23D /* JTM_05_KeyMapping.swift */,
330+
627B5E822320EC760046E23D /* JTM_06_CustomValue.swift */,
329331
627B5E842320EC760046E23D /* JTM_07_DynamicModel.swift */,
330-
627B5E852320EC760046E23D /* JTM_04_ModelArray.swift */,
331-
627B5E862320EC760046E23D /* JTM_03_NestedModel.swift */,
332332
);
333333
path = JSON_To_Model;
334334
sourceTree = "<group>";

Tests/KakaJSONTests/XCTestManifests.swift

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,20 @@ import XCTest
33
#if !canImport(ObjectiveC)
44
public func allTests() -> [XCTestCaseEntry] {
55
return [
6-
testCase(KakaJSONTests.allTests),
6+
testCase(JTM_01_Basic.allTests),
7+
testCase(JTM_02_DataType.allTests),
8+
testCase(JTM_03_NestedModel.allTests),
9+
testCase(JTM_04_ModelArray.allTests),
10+
testCase(JTM_05_KeyMapping.allTests),
11+
testCase(JTM_06_CustomValue.allTests),
12+
testCase(JTM_07_DynamicModel.allTests),
13+
testCase(MTJ_01_Basic.allTests),
14+
testCase(MTJ_02_NestedModel.allTests),
15+
testCase(MTJ_03_ModelArray.allTests),
16+
testCase(MTJ_04_KeyMapping.allTests),
17+
testCase(MTJ_05_CustomValue.allTests),
18+
testCase(TestCoding.allTests),
19+
testCase(Global.allTests)
720
]
821
}
922
#endif

0 commit comments

Comments
 (0)