@@ -106,7 +106,7 @@ TEST(TestAttributePathExpandIterator, TestAllWildcard)
106
106
107
107
size_t index = 0 ;
108
108
109
- for (app::AttributePathExpandIterator iter (CodegenDataModelProviderInstance (nullptr /* delegate */ ), &clusInfo); iter.Get (path);
109
+ for (app::AttributePathExpandIteratorLegacy iter (CodegenDataModelProviderInstance (nullptr /* delegate */ ), &clusInfo); iter.Get (path);
110
110
iter.Next ())
111
111
{
112
112
ChipLogDetail (AppServer, " Visited Attribute: 0x%04X / " ChipLogFormatMEI " / " ChipLogFormatMEI, path.mEndpointId ,
@@ -131,7 +131,7 @@ TEST(TestAttributePathExpandIterator, TestWildcardEndpoint)
131
131
132
132
size_t index = 0 ;
133
133
134
- for (app::AttributePathExpandIterator iter (CodegenDataModelProviderInstance (nullptr /* delegate */ ), &clusInfo); iter.Get (path);
134
+ for (app::AttributePathExpandIteratorLegacy iter (CodegenDataModelProviderInstance (nullptr /* delegate */ ), &clusInfo); iter.Get (path);
135
135
iter.Next ())
136
136
{
137
137
ChipLogDetail (AppServer, " Visited Attribute: 0x%04X / " ChipLogFormatMEI " / " ChipLogFormatMEI, path.mEndpointId ,
@@ -159,7 +159,7 @@ TEST(TestAttributePathExpandIterator, TestWildcardCluster)
159
159
160
160
size_t index = 0 ;
161
161
162
- for (app::AttributePathExpandIterator iter (CodegenDataModelProviderInstance (nullptr /* delegate */ ), &clusInfo); iter.Get (path);
162
+ for (app::AttributePathExpandIteratorLegacy iter (CodegenDataModelProviderInstance (nullptr /* delegate */ ), &clusInfo); iter.Get (path);
163
163
iter.Next ())
164
164
{
165
165
ChipLogDetail (AppServer, " Visited Attribute: 0x%04X / " ChipLogFormatMEI " / " ChipLogFormatMEI, path.mEndpointId ,
@@ -187,7 +187,7 @@ TEST(TestAttributePathExpandIterator, TestWildcardClusterGlobalAttributeNotInMet
187
187
188
188
size_t index = 0 ;
189
189
190
- for (app::AttributePathExpandIterator iter (CodegenDataModelProviderInstance (nullptr /* delegate */ ), &clusInfo); iter.Get (path);
190
+ for (app::AttributePathExpandIteratorLegacy iter (CodegenDataModelProviderInstance (nullptr /* delegate */ ), &clusInfo); iter.Get (path);
191
191
iter.Next ())
192
192
{
193
193
ChipLogDetail (AppServer, " Visited Attribute: 0x%04X / " ChipLogFormatMEI " / " ChipLogFormatMEI, path.mEndpointId ,
@@ -219,7 +219,7 @@ TEST(TestAttributePathExpandIterator, TestWildcardAttribute)
219
219
220
220
size_t index = 0 ;
221
221
222
- for (app::AttributePathExpandIterator iter (CodegenDataModelProviderInstance (nullptr /* delegate */ ), &clusInfo); iter.Get (path);
222
+ for (app::AttributePathExpandIteratorLegacy iter (CodegenDataModelProviderInstance (nullptr /* delegate */ ), &clusInfo); iter.Get (path);
223
223
iter.Next ())
224
224
{
225
225
ChipLogDetail (AppServer, " Visited Attribute: 0x%04X / " ChipLogFormatMEI " / " ChipLogFormatMEI, path.mEndpointId ,
@@ -245,7 +245,7 @@ TEST(TestAttributePathExpandIterator, TestNoWildcard)
245
245
246
246
size_t index = 0 ;
247
247
248
- for (app::AttributePathExpandIterator iter (CodegenDataModelProviderInstance (nullptr /* delegate */ ), &clusInfo); iter.Get (path);
248
+ for (app::AttributePathExpandIteratorLegacy iter (CodegenDataModelProviderInstance (nullptr /* delegate */ ), &clusInfo); iter.Get (path);
249
249
iter.Next ())
250
250
{
251
251
ChipLogDetail (AppServer, " Visited Attribute: 0x%04X / " ChipLogFormatMEI " / " ChipLogFormatMEI, path.mEndpointId ,
@@ -360,7 +360,7 @@ TEST(TestAttributePathExpandIterator, TestMultipleClusInfo)
360
360
361
361
size_t index = 0 ;
362
362
363
- for (app::AttributePathExpandIterator iter (CodegenDataModelProviderInstance (nullptr /* delegate */ ), &clusInfo1);
363
+ for (app::AttributePathExpandIteratorLegacy iter (CodegenDataModelProviderInstance (nullptr /* delegate */ ), &clusInfo1);
364
364
iter.Get (path); iter.Next ())
365
365
{
366
366
ChipLogDetail (AppServer, " Visited Attribute: 0x%04X / " ChipLogFormatMEI " / " ChipLogFormatMEI, path.mEndpointId ,
0 commit comments