-
Notifications
You must be signed in to change notification settings - Fork 269
/
Copy pathResources.Designer.cs
1232 lines (1101 loc) · 57.5 KB
/
Resources.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace MSTest.Analyzers {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("MSTest.Analyzers.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Methods marked with [AssemblyCleanup] should follow the following layout to be valid:
///- it should be 'public'
///- it should be 'static'
///- it should not be generic
///- it should not take any parameter
///- return type should be 'void', 'Task' or 'ValueTask'
///- it should not be 'async void'
///- it should not be a special method (finalizer, operator...)..
/// </summary>
internal static string AssemblyCleanupShouldBeValidDescription {
get {
return ResourceManager.GetString("AssemblyCleanupShouldBeValidDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AssemblyCleanup method '{0}' should not take any parameter.
/// </summary>
internal static string AssemblyCleanupShouldBeValidMessageFormat_NoParameters {
get {
return ResourceManager.GetString("AssemblyCleanupShouldBeValidMessageFormat_NoParameters", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AssemblyCleanup method '{0}' can't be declared on a generic class.
/// </summary>
internal static string AssemblyCleanupShouldBeValidMessageFormat_NotAGenericClass {
get {
return ResourceManager.GetString("AssemblyCleanupShouldBeValidMessageFormat_NotAGenericClass", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AssemblyCleanup method '{0}' should return 'void', 'Task' or 'ValueTask'.
/// </summary>
internal static string AssemblyCleanupShouldBeValidMessageFormat_NotAsyncVoid {
get {
return ResourceManager.GetString("AssemblyCleanupShouldBeValidMessageFormat_NotAsyncVoid", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AssemblyCleanup method '{0}' should not be generic.
/// </summary>
internal static string AssemblyCleanupShouldBeValidMessageFormat_NotGeneric {
get {
return ResourceManager.GetString("AssemblyCleanupShouldBeValidMessageFormat_NotGeneric", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AssemblyCleanup method '{0}' should be an 'ordinary' method.
/// </summary>
internal static string AssemblyCleanupShouldBeValidMessageFormat_Ordinary {
get {
return ResourceManager.GetString("AssemblyCleanupShouldBeValidMessageFormat_Ordinary", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AssemblyCleanup method '{0}' should be 'public'.
/// </summary>
internal static string AssemblyCleanupShouldBeValidMessageFormat_Public {
get {
return ResourceManager.GetString("AssemblyCleanupShouldBeValidMessageFormat_Public", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AssemblyCleanup method '{0}' should return 'void', 'Task' or 'ValueTask'.
/// </summary>
internal static string AssemblyCleanupShouldBeValidMessageFormat_ReturnType {
get {
return ResourceManager.GetString("AssemblyCleanupShouldBeValidMessageFormat_ReturnType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AssemblyCleanup method '{0}' should be 'static'.
/// </summary>
internal static string AssemblyCleanupShouldBeValidMessageFormat_Static {
get {
return ResourceManager.GetString("AssemblyCleanupShouldBeValidMessageFormat_Static", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AssemblyCleanup methods should have valid layout.
/// </summary>
internal static string AssemblyCleanupShouldBeValidTitle {
get {
return ResourceManager.GetString("AssemblyCleanupShouldBeValidTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Methods marked with [AssemblyInitialize] should follow the following layout to be valid:
///- it should be 'public'
///- it should be 'static'
///- it should not be generic
///- it should take one parameter of type 'TestContext'
///- return type should be 'void', 'Task' or 'ValueTask'
///- it should not be 'async void'
///- it should not be a special method (finalizer, operator...)..
/// </summary>
internal static string AssemblyInitializeShouldBeValidDescription {
get {
return ResourceManager.GetString("AssemblyInitializeShouldBeValidDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AssemblyInitialize method '{0}' can't be declared on a generic class.
/// </summary>
internal static string AssemblyInitializeShouldBeValidMessageFormat_NotAGenericClass {
get {
return ResourceManager.GetString("AssemblyInitializeShouldBeValidMessageFormat_NotAGenericClass", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AssemblyInitialize method '{0}' should return 'void', 'Task' or 'ValueTask'.
/// </summary>
internal static string AssemblyInitializeShouldBeValidMessageFormat_NotAsyncVoid {
get {
return ResourceManager.GetString("AssemblyInitializeShouldBeValidMessageFormat_NotAsyncVoid", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AssemblyInitialize method '{0}' should not be generic.
/// </summary>
internal static string AssemblyInitializeShouldBeValidMessageFormat_NotGeneric {
get {
return ResourceManager.GetString("AssemblyInitializeShouldBeValidMessageFormat_NotGeneric", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AssemblyInitialize method '{0}' should be an 'ordinary' method.
/// </summary>
internal static string AssemblyInitializeShouldBeValidMessageFormat_Ordinary {
get {
return ResourceManager.GetString("AssemblyInitializeShouldBeValidMessageFormat_Ordinary", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AssemblyInitialize method '{0}' should be 'public'.
/// </summary>
internal static string AssemblyInitializeShouldBeValidMessageFormat_Public {
get {
return ResourceManager.GetString("AssemblyInitializeShouldBeValidMessageFormat_Public", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AssemblyInitialize method '{0}' should return 'void', 'Task' or 'ValueTask'.
/// </summary>
internal static string AssemblyInitializeShouldBeValidMessageFormat_ReturnType {
get {
return ResourceManager.GetString("AssemblyInitializeShouldBeValidMessageFormat_ReturnType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AssemblyInitialize method '{0}' should take a single parameter of type 'TestContext'.
/// </summary>
internal static string AssemblyInitializeShouldBeValidMessageFormat_SingleContextParameter {
get {
return ResourceManager.GetString("AssemblyInitializeShouldBeValidMessageFormat_SingleContextParameter", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AssemblyInitialize method '{0}' should be 'static'.
/// </summary>
internal static string AssemblyInitializeShouldBeValidMessageFormat_Static {
get {
return ResourceManager.GetString("AssemblyInitializeShouldBeValidMessageFormat_Static", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AssemblyInitialize methods should have valid layout.
/// </summary>
internal static string AssemblyInitializeShouldBeValidTitle {
get {
return ResourceManager.GetString("AssemblyInitializeShouldBeValidTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Prefer adding an additional assertion that checks for null.
/// </summary>
internal static string AssertionArgsShouldAvoidConditionalAccessMessageFormat {
get {
return ResourceManager.GetString("AssertionArgsShouldAvoidConditionalAccessMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avoid conditional access in assertions.
/// </summary>
internal static string AssertionArgsShouldAvoidConditionalAccessTitle {
get {
return ResourceManager.GetString("AssertionArgsShouldAvoidConditionalAccessTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 'Assert.AreEqual', 'Assert.AreNotEqual', 'Assert.AreSame' and 'Assert.AreNotSame' expects the expected value to be passed first and the actual value to be passed as second argument..
/// </summary>
internal static string AssertionArgsShouldBePassedInCorrectOrderDescription {
get {
return ResourceManager.GetString("AssertionArgsShouldBePassedInCorrectOrderDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Assertion arguments should be passed in the correct order. 'actual' and 'expected'/'notExpected' arguments have been swapped..
/// </summary>
internal static string AssertionArgsShouldBePassedInCorrectOrderMessageFormat {
get {
return ResourceManager.GetString("AssertionArgsShouldBePassedInCorrectOrderMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Assertion arguments should be passed in the correct order.
/// </summary>
internal static string AssertionArgsShouldBePassedInCorrectOrderTitle {
get {
return ResourceManager.GetString("AssertionArgsShouldBePassedInCorrectOrderTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Prefer 'Assert.ThrowsException' or 'Assert.ThrowsExceptionAsync' over '[ExpectedException]' as it ensures that only the expected call throws the expected exception. The assert APIs also provide more flexibility and allow you to assert extra properties of the exeption..
/// </summary>
internal static string AvoidExpectedExceptionAttributeDescription {
get {
return ResourceManager.GetString("AvoidExpectedExceptionAttributeDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Prefer 'Assert.ThrowsException/ThrowsExceptionAsync' over '[ExpectedException]'.
/// </summary>
internal static string AvoidExpectedExceptionAttributeMessageFormat {
get {
return ResourceManager.GetString("AvoidExpectedExceptionAttributeMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avoid '[ExpectedException]'.
/// </summary>
internal static string AvoidExpectedExceptionAttributeTitle {
get {
return ResourceManager.GetString("AvoidExpectedExceptionAttributeTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Methods marked with [ClassCleanup] should follow the following layout to be valid:
///- it should be 'public'
///- it should not 'static'
///- it should not be generic
///- it should not take any parameter
///- return type should be 'void', 'Task' or 'ValueTask'
///- it should not be 'async void'
///- it should not be a special method (finalizer, operator...)..
/// </summary>
internal static string ClassCleanupShouldBeValidDescription {
get {
return ResourceManager.GetString("ClassCleanupShouldBeValidDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ClassCleanup method '{0}' should not take any parameter.
/// </summary>
internal static string ClassCleanupShouldBeValidMessageFormat_NoParameters {
get {
return ResourceManager.GetString("ClassCleanupShouldBeValidMessageFormat_NoParameters", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ClassCleanup method '{0}' can't be declared on a generic class without the `InheritanceBehavior` mode is set.
/// </summary>
internal static string ClassCleanupShouldBeValidMessageFormat_NotAGenericClassUnlessInheritanceModeSet {
get {
return ResourceManager.GetString("ClassCleanupShouldBeValidMessageFormat_NotAGenericClassUnlessInheritanceModeSet", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ClassCleanup method '{0}' should return 'void', 'Task' or 'ValueTask'.
/// </summary>
internal static string ClassCleanupShouldBeValidMessageFormat_NotAsyncVoid {
get {
return ResourceManager.GetString("ClassCleanupShouldBeValidMessageFormat_NotAsyncVoid", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ClassCleanup method '{0}' should not be generic.
/// </summary>
internal static string ClassCleanupShouldBeValidMessageFormat_NotGeneric {
get {
return ResourceManager.GetString("ClassCleanupShouldBeValidMessageFormat_NotGeneric", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ClassCleanup method '{0}' should be an 'ordinary' method.
/// </summary>
internal static string ClassCleanupShouldBeValidMessageFormat_Ordinary {
get {
return ResourceManager.GetString("ClassCleanupShouldBeValidMessageFormat_Ordinary", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ClassCleanup method '{0}' should be 'public'.
/// </summary>
internal static string ClassCleanupShouldBeValidMessageFormat_Public {
get {
return ResourceManager.GetString("ClassCleanupShouldBeValidMessageFormat_Public", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ClassCleanup method '{0}' should return 'void', 'Task' or 'ValueTask'.
/// </summary>
internal static string ClassCleanupShouldBeValidMessageFormat_ReturnType {
get {
return ResourceManager.GetString("ClassCleanupShouldBeValidMessageFormat_ReturnType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ClassCleanup method '{0}' should be 'static'.
/// </summary>
internal static string ClassCleanupShouldBeValidMessageFormat_Static {
get {
return ResourceManager.GetString("ClassCleanupShouldBeValidMessageFormat_Static", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ClassCleanup methods should have valid layout.
/// </summary>
internal static string ClassCleanupShouldBeValidTitle {
get {
return ResourceManager.GetString("ClassCleanupShouldBeValidTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Methods marked with [ClassInitialize] should follow the following layout to be valid:
///- it should be 'public'
///- it should be 'static'
///- it should not be generic
///- it should take one parameter of type 'TestContext'
///- return type should be 'void', 'Task' or 'ValueTask'
///- it should not be 'async void'
///- it should not be a special method (finalizer, operator...)..
/// </summary>
internal static string ClassInitializeShouldBeValidDescription {
get {
return ResourceManager.GetString("ClassInitializeShouldBeValidDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ClassInitialize method '{0}' can't be declared on a generic class without the `InheritanceBehavior` mode is set.
/// </summary>
internal static string ClassInitializeShouldBeValidMessageFormat_NotAGenericClassUnlessInheritanceModeSet {
get {
return ResourceManager.GetString("ClassInitializeShouldBeValidMessageFormat_NotAGenericClassUnlessInheritanceModeSe" +
"t", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ClassInitialize method '{0}' should return 'void', 'Task' or 'ValueTask'.
/// </summary>
internal static string ClassInitializeShouldBeValidMessageFormat_NotAsyncVoid {
get {
return ResourceManager.GetString("ClassInitializeShouldBeValidMessageFormat_NotAsyncVoid", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ClassInitialize method '{0}' should not be generic.
/// </summary>
internal static string ClassInitializeShouldBeValidMessageFormat_NotGeneric {
get {
return ResourceManager.GetString("ClassInitializeShouldBeValidMessageFormat_NotGeneric", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ClassInitialize method '{0}' should be an 'ordinary' method.
/// </summary>
internal static string ClassInitializeShouldBeValidMessageFormat_Ordinary {
get {
return ResourceManager.GetString("ClassInitializeShouldBeValidMessageFormat_Ordinary", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ClassInitialize method '{0}' should be 'public'.
/// </summary>
internal static string ClassInitializeShouldBeValidMessageFormat_Public {
get {
return ResourceManager.GetString("ClassInitializeShouldBeValidMessageFormat_Public", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ClassInitialize method '{0}' should return 'void', 'Task' or 'ValueTask'.
/// </summary>
internal static string ClassInitializeShouldBeValidMessageFormat_ReturnType {
get {
return ResourceManager.GetString("ClassInitializeShouldBeValidMessageFormat_ReturnType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ClassInitialize method '{0}' should take a single parameter of type 'TestContext'.
/// </summary>
internal static string ClassInitializeShouldBeValidMessageFormat_SingleContextParameter {
get {
return ResourceManager.GetString("ClassInitializeShouldBeValidMessageFormat_SingleContextParameter", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ClassInitialize method '{0}' should be 'static'.
/// </summary>
internal static string ClassInitializeShouldBeValidMessageFormat_Static {
get {
return ResourceManager.GetString("ClassInitializeShouldBeValidMessageFormat_Static", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ClassInitialize methods should have valid layout.
/// </summary>
internal static string ClassInitializeShouldBeValidTitle {
get {
return ResourceManager.GetString("ClassInitializeShouldBeValidTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to DataRow entry should have the following layout to be valid:
///- should only be set on a test method;
///- argument count should match method argument count;
///- argument type should match method argument type..
/// </summary>
internal static string DataRowShouldBeValidDescription {
get {
return ResourceManager.GetString("DataRowShouldBeValidDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to DataRow argument count should match method parameter count (constructor arguments: {0}, method parameters: {1}).
/// </summary>
internal static string DataRowShouldBeValidMessageFormat_ArgumentCountMismatch {
get {
return ResourceManager.GetString("DataRowShouldBeValidMessageFormat_ArgumentCountMismatch", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to DataRow argument type should match method parameter type. Mismatches occur at indices: {0}.
/// </summary>
internal static string DataRowShouldBeValidMessageFormat_ArgumentTypeMismatch {
get {
return ResourceManager.GetString("DataRowShouldBeValidMessageFormat_ArgumentTypeMismatch", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to DataRow should only be set on a test method.
/// </summary>
internal static string DataRowShouldBeValidMessageFormat_OnTestMethod {
get {
return ResourceManager.GetString("DataRowShouldBeValidMessageFormat_OnTestMethod", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to DataRow should be valid.
/// </summary>
internal static string DataRowShouldBeValidTitle {
get {
return ResourceManager.GetString("DataRowShouldBeValidTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Do not negate boolean assertions, instead use the opposite assertion.
/// </summary>
internal static string DoNotNegateBooleanAssertionMessageFormat {
get {
return ResourceManager.GetString("DoNotNegateBooleanAssertionMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Do not negate boolean assertions.
/// </summary>
internal static string DoNotNegateBooleanAssertionTitle {
get {
return ResourceManager.GetString("DoNotNegateBooleanAssertionTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Do not store TestContext in a static member.
/// </summary>
internal static string DoNotStoreStaticTestContextAnalyzerMessageFormat {
get {
return ResourceManager.GetString("DoNotStoreStaticTestContextAnalyzerMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Do not store TestContext in a static member.
/// </summary>
internal static string DoNotStoreStaticTestContextAnalyzerTitle {
get {
return ResourceManager.GetString("DoNotStoreStaticTestContextAnalyzerTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use 'Assert.Fail' instead of an always-failing 'Assert.{0}' assert.
/// </summary>
internal static string PreferAssertFailOverAlwaysFalseConditionsMessageFormat {
get {
return ResourceManager.GetString("PreferAssertFailOverAlwaysFalseConditionsMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use 'Assert.Fail' instead of an always-failing assert.
/// </summary>
internal static string PreferAssertFailOverAlwaysFalseConditionsTitle {
get {
return ResourceManager.GetString("PreferAssertFailOverAlwaysFalseConditionsTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Prefer constructors over TestInitialize methods.
/// </summary>
internal static string PreferConstructorOverTestInitializeMessageFormat {
get {
return ResourceManager.GetString("PreferConstructorOverTestInitializeMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Prefer constructors over TestInitialize methods.
/// </summary>
internal static string PreferConstructorOverTestInitializeTitle {
get {
return ResourceManager.GetString("PreferConstructorOverTestInitializeTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Prefer 'Dispose' over TestCleanup methods.
/// </summary>
internal static string PreferDisposeOverTestCleanupMessageFormat {
get {
return ResourceManager.GetString("PreferDisposeOverTestCleanupMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Prefer 'Dispose' over TestCleanup methods.
/// </summary>
internal static string PreferDisposeOverTestCleanupTitle {
get {
return ResourceManager.GetString("PreferDisposeOverTestCleanupTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Prefer TestCleanup over 'Dispose' methods.
/// </summary>
internal static string PreferTestCleanupOverDisposeMessageFormat {
get {
return ResourceManager.GetString("PreferTestCleanupOverDisposeMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Prefer TestCleanup over 'Dispose' methods.
/// </summary>
internal static string PreferTestCleanupOverDisposeTitle {
get {
return ResourceManager.GetString("PreferTestCleanupOverDisposeTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Prefer TestInitialize methods over constructors.
/// </summary>
internal static string PreferTestInitializeOverConstructorMessageFormat {
get {
return ResourceManager.GetString("PreferTestInitializeOverConstructorMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Prefer TestInitialize methods over constructors.
/// </summary>
internal static string PreferTestInitializeOverConstructorTitle {
get {
return ResourceManager.GetString("PreferTestInitializeOverConstructorTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to It's considered a good practice to have only test classes marked public in a test project..
/// </summary>
internal static string PublicTypeShouldBeTestClassDescription {
get {
return ResourceManager.GetString("PublicTypeShouldBeTestClassDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Public type '{0}' should be marked with '[TestClass]' or changed to 'internal'.
/// </summary>
internal static string PublicTypeShouldBeTestClassMessageFormat {
get {
return ResourceManager.GetString("PublicTypeShouldBeTestClassMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Public types should be test classes.
/// </summary>
internal static string PublicTypeShouldBeTestClassTitle {
get {
return ResourceManager.GetString("PublicTypeShouldBeTestClassTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Test classes, classes marked with the '[TestClass]' attribute, should respect the following layout to be considered valid by MSTest:
///- it should be 'public' (or 'internal' if '[assembly: DiscoverInternals]' attribute is set)
///- it should not be 'static' (except if it contains only 'AssemblyInitialize' and/or 'AssemblyCleanup' methods)
///- it should not be generic..
/// </summary>
internal static string TestClassShouldBeValidDescription {
get {
return ResourceManager.GetString("TestClassShouldBeValidDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Test class '{0}' should not be 'static'.
/// </summary>
internal static string TestClassShouldBeValidMessageFormat_NotStatic {
get {
return ResourceManager.GetString("TestClassShouldBeValidMessageFormat_NotStatic", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Test class '{0}' should be 'public'.
/// </summary>
internal static string TestClassShouldBeValidMessageFormat_Public {
get {
return ResourceManager.GetString("TestClassShouldBeValidMessageFormat_Public", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Test class '{0}' should be 'public' or 'internal'.
/// </summary>
internal static string TestClassShouldBeValidMessageFormat_PublicOrInternal {
get {
return ResourceManager.GetString("TestClassShouldBeValidMessageFormat_PublicOrInternal", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Test classes should have valid layout.
/// </summary>
internal static string TestClassShouldBeValidTitle {
get {
return ResourceManager.GetString("TestClassShouldBeValidTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Test class should have at least one test method or be 'static' with method(s) marked by '[AssemblyInitialization]' and/or '[AssemblyCleanup]'..
/// </summary>
internal static string TestClassShouldHaveTestMethodDescription {
get {
return ResourceManager.GetString("TestClassShouldHaveTestMethodDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Test class '{0}' should have at least one test method or be 'static' with method(s) marked by '[AssemblyInitialization]' and/or '[AssemblyCleanup]'.
/// </summary>
internal static string TestClassShouldHaveTestMethodMessageFormat {
get {
return ResourceManager.GetString("TestClassShouldHaveTestMethodMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Test class should have test method.
/// </summary>
internal static string TestClassShouldHaveTestMethodTitle {
get {
return ResourceManager.GetString("TestClassShouldHaveTestMethodTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Methods marked with [TestCleanup] should follow the following layout to be valid:
///- it should be 'public'
///- it should not be 'static'
///- it should not be generic
///- it should not be 'abstract'
///- it should not take any parameter
///- return type should be 'void', 'Task' or 'ValueTask'
///- it should not be 'async void'
///- it should not be a special method (finalizer, operator...)..
/// </summary>
internal static string TestCleanupShouldBeValidDescription {
get {
return ResourceManager.GetString("TestCleanupShouldBeValidDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to TestCleanup method '{0}' should not take any parameter.
/// </summary>
internal static string TestCleanupShouldBeValidMessageFormat_NoParameters {
get {
return ResourceManager.GetString("TestCleanupShouldBeValidMessageFormat_NoParameters", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to TestCleanup method '{0}' should not be 'abstract'.
/// </summary>
internal static string TestCleanupShouldBeValidMessageFormat_NotAbstract {
get {
return ResourceManager.GetString("TestCleanupShouldBeValidMessageFormat_NotAbstract", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to TestCleanup method '{0}' should not be 'async void'.
/// </summary>
internal static string TestCleanupShouldBeValidMessageFormat_NotAsyncVoid {
get {
return ResourceManager.GetString("TestCleanupShouldBeValidMessageFormat_NotAsyncVoid", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to TestCleanup method '{0}' should not be generic.
/// </summary>
internal static string TestCleanupShouldBeValidMessageFormat_NotGeneric {
get {
return ResourceManager.GetString("TestCleanupShouldBeValidMessageFormat_NotGeneric", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to TestCleanup method '{0}' should not be 'static'.
/// </summary>
internal static string TestCleanupShouldBeValidMessageFormat_NotStatic {
get {
return ResourceManager.GetString("TestCleanupShouldBeValidMessageFormat_NotStatic", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to TestCleanup method '{0}' should be an 'ordinary' method.
/// </summary>
internal static string TestCleanupShouldBeValidMessageFormat_Ordinary {
get {
return ResourceManager.GetString("TestCleanupShouldBeValidMessageFormat_Ordinary", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to TestCleanup method '{0}' should be 'public'.
/// </summary>
internal static string TestCleanupShouldBeValidMessageFormat_Public {
get {
return ResourceManager.GetString("TestCleanupShouldBeValidMessageFormat_Public", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to TestCleanup method '{0}' should return 'void', 'Task' or 'ValueTask'.
/// </summary>
internal static string TestCleanupShouldBeValidMessageFormat_ReturnType {
get {
return ResourceManager.GetString("TestCleanupShouldBeValidMessageFormat_ReturnType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to TestCleanup method should have valid layout.
/// </summary>
internal static string TestCleanupShouldBeValidTitle {
get {
return ResourceManager.GetString("TestCleanupShouldBeValidTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to TestContext property should follow the following layout to be valid:
///- it should be a property
///- it should be 'public' (or 'internal' if '[assembly: DiscoverInternals]' attribute is set)
///- it should not be 'static'
///- it should not be readonly..
/// </summary>
internal static string TestContextShouldBeValidDescription {
get {
return ResourceManager.GetString("TestContextShouldBeValidDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Member 'TestContext' should be a property and not a field.
/// </summary>
internal static string TestContextShouldBeValidMessageFormat_NotField {
get {
return ResourceManager.GetString("TestContextShouldBeValidMessageFormat_NotField", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Property 'TestContext' should be settable.
/// </summary>
internal static string TestContextShouldBeValidMessageFormat_NotReadonly {
get {
return ResourceManager.GetString("TestContextShouldBeValidMessageFormat_NotReadonly", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Property 'TestContext' should not be 'static'.
/// </summary>
internal static string TestContextShouldBeValidMessageFormat_NotStatic {
get {
return ResourceManager.GetString("TestContextShouldBeValidMessageFormat_NotStatic", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Property 'TestContext' should be 'public'.
/// </summary>
internal static string TestContextShouldBeValidMessageFormat_Public {
get {
return ResourceManager.GetString("TestContextShouldBeValidMessageFormat_Public", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Property 'TestContext' should be 'public' or 'internal'.
/// </summary>
internal static string TestContextShouldBeValidMessageFormat_PublicOrInternal {
get {
return ResourceManager.GetString("TestContextShouldBeValidMessageFormat_PublicOrInternal", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Test context property should have valid layout.
/// </summary>
internal static string TestContextShouldBeValidTitle {
get {
return ResourceManager.GetString("TestContextShouldBeValidTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Methods marked with [TestInitialize] should follow the following layout to be valid:
///- it should be 'public'
///- it should not be 'static'
///- it should not be generic
///- it should not be 'abstract'
///- it should not take any parameter
///- return type should be 'void', 'Task' or 'ValueTask'
///- it should not be 'async void'
///- it should not be a special method (finalizer, operator...)..
/// </summary>
internal static string TestInitializeShouldBeValidDescription {
get {
return ResourceManager.GetString("TestInitializeShouldBeValidDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to TestInitialize method '{0}' should not take any parameter.
/// </summary>
internal static string TestInitializeShouldBeValidMessageFormat_NoParameters {
get {
return ResourceManager.GetString("TestInitializeShouldBeValidMessageFormat_NoParameters", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to TestInitialize method '{0}' should not be 'abstract'.
/// </summary>
internal static string TestInitializeShouldBeValidMessageFormat_NotAbstract {
get {
return ResourceManager.GetString("TestInitializeShouldBeValidMessageFormat_NotAbstract", resourceCulture);
}
}
/// <summary>