@@ -204,44 +204,44 @@ let ``Layout combine API tests`` =
204
204
testList " LayoutObjects.Layout API" [
205
205
testCase " combine Annotations" ( fun _ ->
206
206
Expect.sequenceEqual
207
- ( combined.TryGetTypedValue < seq< Annotation>>( " annotations" )) .Value
208
- ( expectedCombined.TryGetTypedValue < seq< Annotation>>( " annotations" )) .Value
207
+ ( combined.TryGetTypedPropertyValue < seq< Annotation>>( " annotations" )) .Value
208
+ ( expectedCombined.TryGetTypedPropertyValue < seq< Annotation>>( " annotations" )) .Value
209
209
" Layout.combine did not return the correct object"
210
210
)
211
211
testCase " combine Shapes" ( fun _ ->
212
212
Expect.sequenceEqual
213
- ( combined.TryGetTypedValue < seq< Shape>>( " shapes" )) .Value
214
- ( expectedCombined.TryGetTypedValue < seq< Shape>>( " shapes" )) .Value
213
+ ( combined.TryGetTypedPropertyValue < seq< Shape>>( " shapes" )) .Value
214
+ ( expectedCombined.TryGetTypedPropertyValue < seq< Shape>>( " shapes" )) .Value
215
215
" Layout.combine did not return the correct object"
216
216
)
217
217
testCase " combine Selections" ( fun _ ->
218
218
Expect.sequenceEqual
219
- ( combined.TryGetTypedValue < seq< Selection>>( " selections" )) .Value
220
- ( expectedCombined.TryGetTypedValue < seq< Selection>>( " selections" )) .Value
219
+ ( combined.TryGetTypedPropertyValue < seq< Selection>>( " selections" )) .Value
220
+ ( expectedCombined.TryGetTypedPropertyValue < seq< Selection>>( " selections" )) .Value
221
221
" Layout.combine did not return the correct object"
222
222
)
223
223
testCase " combine Images" ( fun _ ->
224
224
Expect.sequenceEqual
225
- ( combined.TryGetTypedValue < seq< LayoutImage>>( " images" )) .Value
226
- ( expectedCombined.TryGetTypedValue < seq< LayoutImage>>( " images" )) .Value
225
+ ( combined.TryGetTypedPropertyValue < seq< LayoutImage>>( " images" )) .Value
226
+ ( expectedCombined.TryGetTypedPropertyValue < seq< LayoutImage>>( " images" )) .Value
227
227
" Layout.combine did not return the correct object"
228
228
)
229
229
testCase " combine Sliders" ( fun _ ->
230
230
Expect.sequenceEqual
231
- ( combined.TryGetTypedValue < seq< Slider>>( " sliders" )) .Value
232
- ( expectedCombined.TryGetTypedValue < seq< Slider>>( " sliders" )) .Value
231
+ ( combined.TryGetTypedPropertyValue < seq< Slider>>( " sliders" )) .Value
232
+ ( expectedCombined.TryGetTypedPropertyValue < seq< Slider>>( " sliders" )) .Value
233
233
" Layout.combine did not return the correct object"
234
234
)
235
235
testCase " combine HiddenLabels" ( fun _ ->
236
236
Expect.sequenceEqual
237
- ( combined.TryGetTypedValue < seq< string>>( " hiddenlabels" )) .Value
238
- ( expectedCombined.TryGetTypedValue < seq< string>>( " hiddenlabels" )) .Value
237
+ ( combined.TryGetTypedPropertyValue < seq< string>>( " hiddenlabels" )) .Value
238
+ ( expectedCombined.TryGetTypedPropertyValue < seq< string>>( " hiddenlabels" )) .Value
239
239
" Layout.combine did not return the correct object"
240
240
)
241
241
testCase " combine UpdateMenus" ( fun _ ->
242
242
Expect.sequenceEqual
243
- ( combined.TryGetTypedValue < seq< UpdateMenu>>( " updatemenus" )) .Value
244
- ( expectedCombined.TryGetTypedValue < seq< UpdateMenu>>( " updatemenus" )) .Value
243
+ ( combined.TryGetTypedPropertyValue < seq< UpdateMenu>>( " updatemenus" )) .Value
244
+ ( expectedCombined.TryGetTypedPropertyValue < seq< UpdateMenu>>( " updatemenus" )) .Value
245
245
" Layout.combine did not return the correct object"
246
246
)
247
247
]
0 commit comments