@@ -21,15 +21,15 @@ public void BaseOperationConfig()
21
21
{
22
22
// If this fails because you've added a property, be sure to add it to
23
23
// `ToDynamoDBOperationConfig` before updating this unit test
24
- Assert . AreEqual ( 6 , typeof ( BaseOperationConfig ) . GetProperties ( ) . Length ) ;
24
+ Assert . AreEqual ( 4 , typeof ( BaseOperationConfig ) . GetProperties ( ) . Length ) ;
25
25
}
26
26
27
27
[ TestMethod ]
28
28
public void BatchGetConfig ( )
29
29
{
30
30
// If this fails because you've added a property, be sure to add it to
31
31
// `ToDynamoDBOperationConfig` before updating this unit test
32
- Assert . AreEqual ( 8 , typeof ( BatchGetConfig ) . GetProperties ( ) . Length ) ;
32
+ Assert . AreEqual ( 6 , typeof ( BatchGetConfig ) . GetProperties ( ) . Length ) ;
33
33
}
34
34
35
35
[ TestMethod ]
@@ -62,7 +62,7 @@ public void BatchWriteConfig()
62
62
{
63
63
// If this fails because you've added a property, be sure to add it to
64
64
// `ToDynamoDBOperationConfig` before updating this unit test
65
- Assert . AreEqual ( 8 , typeof ( BatchWriteConfig ) . GetProperties ( ) . Length ) ;
65
+ Assert . AreEqual ( 6 , typeof ( BatchWriteConfig ) . GetProperties ( ) . Length ) ;
66
66
}
67
67
68
68
[ TestMethod ]
@@ -95,7 +95,7 @@ public void TransactGetConfig()
95
95
{
96
96
// If this fails because you've added a property, be sure to add it to
97
97
// `ToDynamoDBOperationConfig` before updating this unit test
98
- Assert . AreEqual ( 7 , typeof ( TransactGetConfig ) . GetProperties ( ) . Length ) ;
98
+ Assert . AreEqual ( 5 , typeof ( TransactGetConfig ) . GetProperties ( ) . Length ) ;
99
99
}
100
100
101
101
[ TestMethod ]
@@ -128,7 +128,7 @@ public void TransactWriteConfig()
128
128
{
129
129
// If this fails because you've added a property, be sure to add it to
130
130
// `ToDynamoDBOperationConfig` before updating this unit test
131
- Assert . AreEqual ( 7 , typeof ( TransactWriteConfig ) . GetProperties ( ) . Length ) ;
131
+ Assert . AreEqual ( 5 , typeof ( TransactWriteConfig ) . GetProperties ( ) . Length ) ;
132
132
}
133
133
134
134
[ TestMethod ]
@@ -161,7 +161,7 @@ public void QueryConfig()
161
161
{
162
162
// If this fails because you've added a property, be sure to add it to
163
163
// `ToDynamoDBOperationConfig` before updating this unit test
164
- Assert . AreEqual ( 12 , typeof ( QueryConfig ) . GetProperties ( ) . Length ) ;
164
+ Assert . AreEqual ( 10 , typeof ( QueryConfig ) . GetProperties ( ) . Length ) ;
165
165
}
166
166
167
167
[ TestMethod ]
@@ -193,7 +193,7 @@ public void FromQueryConfig()
193
193
{
194
194
// If this fails because you've added a property, be sure to add it to
195
195
// `ToDynamoDBOperationConfig` before updating this unit test
196
- Assert . AreEqual ( 7 , typeof ( FromQueryConfig ) . GetProperties ( ) . Length ) ;
196
+ Assert . AreEqual ( 5 , typeof ( FromQueryConfig ) . GetProperties ( ) . Length ) ;
197
197
}
198
198
199
199
[ TestMethod ]
@@ -230,7 +230,7 @@ public void ScanConfig()
230
230
{
231
231
// If this fails because you've added a property, be sure to add it to
232
232
// `ToDynamoDBOperationConfig` before updating this unit test
233
- Assert . AreEqual ( 11 , typeof ( ScanConfig ) . GetProperties ( ) . Length ) ;
233
+ Assert . AreEqual ( 9 , typeof ( ScanConfig ) . GetProperties ( ) . Length ) ;
234
234
}
235
235
236
236
[ TestMethod ]
@@ -262,7 +262,7 @@ public void FromScanConfig()
262
262
{
263
263
// If this fails because you've added a property, be sure to add it to
264
264
// `ToDynamoDBOperationConfig` before updating this unit test
265
- Assert . AreEqual ( 7 , typeof ( FromScanConfig ) . GetProperties ( ) . Length ) ;
265
+ Assert . AreEqual ( 5 , typeof ( FromScanConfig ) . GetProperties ( ) . Length ) ;
266
266
}
267
267
268
268
[ TestMethod ]
@@ -294,7 +294,7 @@ public void DeleteConfig()
294
294
{
295
295
// If this fails because you've added a property, be sure to add it to
296
296
// `ToDynamoDBOperationConfig` before updating this unit test
297
- Assert . AreEqual ( 7 , typeof ( DeleteConfig ) . GetProperties ( ) . Length ) ;
297
+ Assert . AreEqual ( 5 , typeof ( DeleteConfig ) . GetProperties ( ) . Length ) ;
298
298
}
299
299
300
300
[ TestMethod ]
@@ -325,7 +325,7 @@ public void SaveConfig()
325
325
{
326
326
// If this fails because you've added a property, be sure to add it to
327
327
// `ToDynamoDBOperationConfig` before updating this unit test
328
- Assert . AreEqual ( 8 , typeof ( SaveConfig ) . GetProperties ( ) . Length ) ;
328
+ Assert . AreEqual ( 6 , typeof ( SaveConfig ) . GetProperties ( ) . Length ) ;
329
329
}
330
330
331
331
[ TestMethod ]
@@ -356,7 +356,7 @@ public void LoadConfig()
356
356
{
357
357
// If this fails because you've added a property, be sure to add it to
358
358
// `ToDynamoDBOperationConfig` before updating this unit test
359
- Assert . AreEqual ( 8 , typeof ( LoadConfig ) . GetProperties ( ) . Length ) ;
359
+ Assert . AreEqual ( 6 , typeof ( LoadConfig ) . GetProperties ( ) . Length ) ;
360
360
}
361
361
362
362
[ TestMethod ]
@@ -387,23 +387,23 @@ public void ToDocumentConfig()
387
387
{
388
388
// If this fails because you've added a property, be sure to add it to
389
389
// `ToDynamoDBOperationConfig` before updating this unit test
390
- Assert . AreEqual ( 7 , typeof ( ToDocumentConfig ) . GetProperties ( ) . Length ) ;
390
+ Assert . AreEqual ( 5 , typeof ( ToDocumentConfig ) . GetProperties ( ) . Length ) ;
391
391
}
392
392
393
393
[ TestMethod ]
394
394
public void FromDocumentConfig ( )
395
395
{
396
396
// If this fails because you've added a property, be sure to add it to
397
397
// `ToDynamoDBOperationConfig` before updating this unit test
398
- Assert . AreEqual ( 7 , typeof ( FromDocumentConfig ) . GetProperties ( ) . Length ) ;
398
+ Assert . AreEqual ( 5 , typeof ( FromDocumentConfig ) . GetProperties ( ) . Length ) ;
399
399
}
400
400
401
401
[ TestMethod ]
402
402
public void GetTargetTableConfig ( )
403
403
{
404
404
// If this fails because you've added a property, be sure to add it to
405
405
// `ToDynamoDBOperationConfig` before updating this unit test
406
- Assert . AreEqual ( 6 , typeof ( GetTargetTableConfig ) . GetProperties ( ) . Length ) ;
406
+ Assert . AreEqual ( 4 , typeof ( GetTargetTableConfig ) . GetProperties ( ) . Length ) ;
407
407
}
408
408
409
409
[ DynamoDBTable ( "TableName" ) ]
0 commit comments