|
6 | 6 | // `swift test --generate-linuxmain`
|
7 | 7 | // to regenerate.
|
8 | 8 | static let __allTests__ChainTests = [
|
9 |
| - ("test_forwarding_chain_forwards_action", test_forwarding_chain_forwards_action) |
| 9 | + ("test_forwarding_chain_forwards_action", test_forwarding_chain_forwards_action), |
10 | 10 | ]
|
11 | 11 | }
|
12 | 12 |
|
|
16 | 16 | // to regenerate.
|
17 | 17 | static let __allTests__DictionaryExtensionsTests = [
|
18 | 18 | ("test_get_or_put", test_get_or_put),
|
19 |
| - ("test_unrapping_subscript", test_unrapping_subscript) |
| 19 | + ("test_unrapping_subscript", test_unrapping_subscript), |
20 | 20 | ]
|
21 | 21 | }
|
22 | 22 |
|
|
25 | 25 | // `swift test --generate-linuxmain`
|
26 | 26 | // to regenerate.
|
27 | 27 | static let __allTests__DispatchQueueTests = [
|
28 |
| - ("test_main_queue", test_main_queue) |
| 28 | + ("test_main_queue", test_main_queue), |
29 | 29 | ]
|
30 | 30 | }
|
31 | 31 |
|
|
36 | 36 | static let __allTests__DispatcherTests = [
|
37 | 37 | ("test_add_remove_middleware", test_add_remove_middleware),
|
38 | 38 | ("test_add_remove_service", test_add_remove_service),
|
39 |
| - ("test_subscription_count", test_subscription_count) |
| 39 | + ("test_subscription_count", test_subscription_count), |
40 | 40 | ]
|
41 | 41 | }
|
42 | 42 |
|
|
47 | 47 | static let __allTests__ObservableTypeTests = [
|
48 | 48 | ("test_dispatch_action_from_store", test_dispatch_action_from_store),
|
49 | 49 | ("test_dispatch_hashable_action_from_store", test_dispatch_hashable_action_from_store),
|
50 |
| - ("test_filter_one", test_filter_one) |
| 50 | + ("test_filter_one", test_filter_one), |
51 | 51 | ]
|
52 | 52 | }
|
53 | 53 |
|
|
59 | 59 | ("test_completable_action_action", test_completable_action_action),
|
60 | 60 | ("test_completable_action_dispatch", test_completable_action_dispatch),
|
61 | 61 | ("test_completable_action_dispatch_error", test_completable_action_dispatch_error),
|
| 62 | + ("test_empty_action_dispatch", test_empty_action_dispatch), |
| 63 | + ("test_empty_action_dispatch_error", test_empty_action_dispatch_error), |
62 | 64 | ("test_keyed_completable_action_dispatch", test_keyed_completable_action_dispatch),
|
63 |
| - ("test_keyed_completable_action_dispatch_error", test_keyed_completable_action_dispatch_error) |
| 65 | + ("test_keyed_completable_action_dispatch_error", test_keyed_completable_action_dispatch_error), |
64 | 66 | ]
|
65 | 67 | }
|
66 | 68 |
|
|
69 | 71 | // `swift test --generate-linuxmain`
|
70 | 72 | // to regenerate.
|
71 | 73 | static let __allTests__PromiseTests = [
|
| 74 | + ("test_equality_completed", test_equality_completed), |
72 | 75 | ("test_equality_error", test_equality_error),
|
73 | 76 | ("test_equality_pending", test_equality_pending),
|
74 | 77 | ("test_equality_with_value", test_equality_with_value),
|
|
79 | 82 | ("test_is_rejected", test_is_rejected),
|
80 | 83 | ("test_is_resolved", test_is_resolved),
|
81 | 84 | ("test_promise_properties", test_promise_properties),
|
82 |
| - ("test_reject", test_reject) |
| 85 | + ("test_reject", test_reject), |
83 | 86 | ]
|
84 | 87 | }
|
85 | 88 |
|
|
93 | 96 | ("test_reset_state", test_reset_state),
|
94 | 97 | ("test_state_received_in_store", test_state_received_in_store),
|
95 | 98 | ("test_subscribe_to_store_receive_actions", test_subscribe_to_store_receive_actions),
|
96 |
| - ("test_subscribe_to_store_receive_multiple_actions", test_subscribe_to_store_receive_multiple_actions) |
| 99 | + ("test_subscribe_to_store_receive_multiple_actions", test_subscribe_to_store_receive_multiple_actions), |
97 | 100 | ]
|
98 | 101 | }
|
99 | 102 |
|
|
106 | 109 | testCase(ObservableTypeTests.__allTests__ObservableTypeTests),
|
107 | 110 | testCase(PrimitiveSequenceTypeTests.__allTests__PrimitiveSequenceTypeTests),
|
108 | 111 | testCase(PromiseTests.__allTests__PromiseTests),
|
109 |
| - testCase(ReducerTests.__allTests__ReducerTests) |
| 112 | + testCase(ReducerTests.__allTests__ReducerTests), |
110 | 113 | ]
|
111 | 114 | }
|
112 | 115 | #endif
|
0 commit comments