forked from microsoft/testfx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResources.Designer.cs
More file actions
1198 lines (1073 loc) · 56.8 KB
/
Copy pathResources.Designer.cs
File metadata and controls
1198 lines (1073 loc) · 56.8 KB
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 can't be declared on a generic class
///-it should be 'public'
///-it should be 'static'
///-it should not be 'async void'
///-it should not be a special method (finalizer, operator...).
///-it should not be generic
///-it should either not take any parameter, or take a single parameter of type 'TestContext'
///-return type should be 'void', 'Task' or 'ValueTask'
///
///The type declaring these methods should also respect the followi [rest of string was truncated]";.
/// </summary>
internal static string AssemblyCleanupShouldBeValidDescription {
get {
return ResourceManager.GetString("AssemblyCleanupShouldBeValidDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AssemblyCleanup method '{0}' signature is invalid.
/// </summary>
internal static string AssemblyCleanupShouldBeValidMessageFormat {
get {
return ResourceManager.GetString("AssemblyCleanupShouldBeValidMessageFormat", 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 can't be declared on a generic class
///-it should be 'public'
///-it should be 'static'
///-it should not be 'async void'
///-it should not be a special method (finalizer, operator...).
///-it should not be generic
///-it should take one parameter of type 'TestContext'
///-return type should be 'void', 'Task' or 'ValueTask'
///
///The type declaring these methods should also respect the following rules:
///-The type should be a cla [rest of string was truncated]";.
/// </summary>
internal static string AssemblyInitializeShouldBeValidDescription {
get {
return ResourceManager.GetString("AssemblyInitializeShouldBeValidDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AssemblyInitialize method '{0}' signature is invalid.
/// </summary>
internal static string AssemblyInitializeShouldBeValidMessageFormat {
get {
return ResourceManager.GetString("AssemblyInitializeShouldBeValidMessageFormat", 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 Use 'Assert.AreEqual'/'Assert.AreNotEqual' instead of 'Assert.AreSame'/'Assert.AreNotSame' when comparing value types. Passing a value type to 'Assert.AreSame'/'Assert.AreNotSame' will be boxed (creating a new object). Because 'Assert.AreSame'/'Assert.AreNotSame' does the comparison by reference, 'Assert.AreSame' will fail when boxing happens, and 'Assert.AreNotSame' will always pass..
/// </summary>
internal static string AvoidAssertAreSameWithValueTypesDescription {
get {
return ResourceManager.GetString("AvoidAssertAreSameWithValueTypesDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use '{0}' instead of '{1}' when comparing value types.
/// </summary>
internal static string AvoidAssertAreSameWithValueTypesMessageFormat {
get {
return ResourceManager.GetString("AvoidAssertAreSameWithValueTypesMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Don't use 'Assert.AreSame' or 'Assert.AreNotSame' with value types.
/// </summary>
internal static string AvoidAssertAreSameWithValueTypesTitle {
get {
return ResourceManager.GetString("AvoidAssertAreSameWithValueTypesTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Prefer 'Assert.ThrowsExactly' or 'Assert.ThrowsExactlyAsync' 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 exception..
/// </summary>
internal static string AvoidExpectedExceptionAttributeDescription {
get {
return ResourceManager.GetString("AvoidExpectedExceptionAttributeDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Prefer 'Assert.ThrowsExactly/ThrowsExactlyAsync' 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 Do not assert inside 'async void' methods, local functions, or lambdas. Exceptions that are thrown in this context will be unhandled exceptions. When using VSTest under .NET Framework, they will be silently swallowed. When using Microsoft.Testing.Platform or VSTest under modern .NET, they may crash the process..
/// </summary>
internal static string AvoidUsingAssertsInAsyncVoidContextDescription {
get {
return ResourceManager.GetString("AvoidUsingAssertsInAsyncVoidContextDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Do not assert inside 'async void' methods, local functions, or lambdas because they may not fail the test.
/// </summary>
internal static string AvoidUsingAssertsInAsyncVoidContextMessageFormat {
get {
return ResourceManager.GetString("AvoidUsingAssertsInAsyncVoidContextMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Do not assert inside 'async void' contexts.
/// </summary>
internal static string AvoidUsingAssertsInAsyncVoidContextTitle {
get {
return ResourceManager.GetString("AvoidUsingAssertsInAsyncVoidContextTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Methods marked with '[ClassCleanup]' should follow the following layout to be valid:
///-it can't be declared on a generic class without the 'InheritanceBehavior' mode is set
///-it should be 'public'
///-it should be 'static'
///-it should not be 'async void'
///-it should not be a special method (finalizer, operator...).
///-it should not be generic
///-it should either not take any parameter, or take a single parameter of type 'TestContext'
///-return type should be 'void', 'Task' or 'ValueTask'
///-'InheritanceBehavior.B [rest of string was truncated]";.
/// </summary>
internal static string ClassCleanupShouldBeValidDescription {
get {
return ResourceManager.GetString("ClassCleanupShouldBeValidDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ClassCleanup method '{0}' signature is invalid.
/// </summary>
internal static string ClassCleanupShouldBeValidMessageFormat {
get {
return ResourceManager.GetString("ClassCleanupShouldBeValidMessageFormat", 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 can't be declared on a generic class without the 'InheritanceBehavior' mode is set
///-it should be 'public'
///-it should be 'static'
///-it should not be 'async void'
///-it should not be a special method (finalizer, operator...).
///-it should not be generic
///-it should take one parameter of type 'TestContext'
///-return type should be 'void', 'Task' or 'ValueTask'
///-'InheritanceBehavior.BeforeEachDerivedClass' attribute par [rest of string was truncated]";.
/// </summary>
internal static string ClassInitializeShouldBeValidDescription {
get {
return ResourceManager.GetString("ClassInitializeShouldBeValidDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ClassInitialize method '{0}' signature is invalid.
/// </summary>
internal static string ClassInitializeShouldBeValidMessageFormat {
get {
return ResourceManager.GetString("ClassInitializeShouldBeValidMessageFormat", 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 Found two conflicting types for generic parameter '{0}'. The conflicting types are '{1}' and '{2}'..
/// </summary>
internal static string DataRowShouldBeValidMessageFormat_GenericTypeArgumentConflictingTypes {
get {
return ResourceManager.GetString("DataRowShouldBeValidMessageFormat_GenericTypeArgumentConflictingTypes", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The type of the generic parameter '{0}' could not be inferred..
/// </summary>
internal static string DataRowShouldBeValidMessageFormat_GenericTypeArgumentNotResolved {
get {
return ResourceManager.GetString("DataRowShouldBeValidMessageFormat_GenericTypeArgumentNotResolved", 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 Shadowing test members could cause testing issues (such as NRE)..
/// </summary>
internal static string DoNotUseShadowingDescription {
get {
return ResourceManager.GetString("DoNotUseShadowingDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Member '{0}' already exists in the base class.
/// </summary>
internal static string DoNotUseShadowingMessageFormat {
get {
return ResourceManager.GetString("DoNotUseShadowingMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Do not use shadowing.
/// </summary>
internal static string DoNotUseShadowingTitle {
get {
return ResourceManager.GetString("DoNotUseShadowingTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 'System.ComponentModel.DescriptionAttribute' has no effect in the context of tests and you likely wanted to use 'Microsoft.VisualStudio.TestTools.UnitTesting.DescriptionAttribute' instead..
/// </summary>
internal static string DoNotUseSystemDescriptionAttributeDescription {
get {
return ResourceManager.GetString("DoNotUseSystemDescriptionAttributeDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Did you mean to be using 'Microsoft.VisualStudio.TestTools.UnitTesting.DescriptionAttribute'?.
/// </summary>
internal static string DoNotUseSystemDescriptionAttributeMessageFormat {
get {
return ResourceManager.GetString("DoNotUseSystemDescriptionAttributeMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 'System.ComponentModel.DescriptionAttribute' has no effect on test methods.
/// </summary>
internal static string DoNotUseSystemDescriptionAttributeTitle {
get {
return ResourceManager.GetString("DoNotUseSystemDescriptionAttributeTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Do not duplicate 'DataRow' attributes. This is usually a copy/paste error. The attribute indices are '{0}' and '{1}'..
/// </summary>
internal static string DuplicateDataRowMessageFormat {
get {
return ResourceManager.GetString("DuplicateDataRowMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avoid duplicated 'DataRow' entries.
/// </summary>
internal static string DuplicateDataRowTitle {
get {
return ResourceManager.GetString("DuplicateDataRowTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 'DynamicData' entry should have the following layout to be valid:
///- should only be set on a test method;
///- member should be defined on the type specified;
///- member should be a method if DynamicDataSourceType.Method is specified or a property otherwise..
/// </summary>
internal static string DynamicDataShouldBeValidDescription {
get {
return ResourceManager.GetString("DynamicDataShouldBeValidDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to '[DynamicData]' data member '{0}.{1}' signature is invalid.
/// </summary>
internal static string DynamicDataShouldBeValidMessageFormat_DataMemberSignature {
get {
return ResourceManager.GetString("DynamicDataShouldBeValidMessageFormat_DataMemberSignature", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to '[DynamicData]' display name method '{0}.{1}' signature is invalid.
/// </summary>
internal static string DynamicDataShouldBeValidMessageFormat_DisplayMethodSignature {
get {
return ResourceManager.GetString("DynamicDataShouldBeValidMessageFormat_DisplayMethodSignature", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to '[DynamicData]' member '{0}.{1}' should be a method.
/// </summary>
internal static string DynamicDataShouldBeValidMessageFormat_MemberMethod {
get {
return ResourceManager.GetString("DynamicDataShouldBeValidMessageFormat_MemberMethod", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to '[DynamicData]' member '{0}.{1}' cannot be found.
/// </summary>
internal static string DynamicDataShouldBeValidMessageFormat_MemberNotFound {
get {
return ResourceManager.GetString("DynamicDataShouldBeValidMessageFormat_MemberNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to '[DynamicData]' referenced member '{0}.{1}' should return 'IEnumerable<object[]>', 'IEnumerable<Tuple>` or 'IEnumerable<ValueTuple>'.
/// </summary>
internal static string DynamicDataShouldBeValidMessageFormat_MemberType {
get {
return ResourceManager.GetString("DynamicDataShouldBeValidMessageFormat_MemberType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to '[DynamicData]' should only be set on a test method.
/// </summary>
internal static string DynamicDataShouldBeValidMessageFormat_OnTestMethod {
get {
return ResourceManager.GetString("DynamicDataShouldBeValidMessageFormat_OnTestMethod", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to '[DynamicData]' member '{0}.{1}' is a method so you should use 'DynamicDataSourceType.AutoDetect' or 'DynamicDataSourceType.Method' (auto detect is the default when not specified explicitly, and is recommended).
/// </summary>
internal static string DynamicDataShouldBeValidMessageFormat_SourceTypeMethod {
get {
return ResourceManager.GetString("DynamicDataShouldBeValidMessageFormat_SourceTypeMethod", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to '[DynamicData]' member '{0}.{1}' is not a property nor a method. Only properties and methods are supported..
/// </summary>
internal static string DynamicDataShouldBeValidMessageFormat_SourceTypeNotPropertyOrMethod {
get {
return ResourceManager.GetString("DynamicDataShouldBeValidMessageFormat_SourceTypeNotPropertyOrMethod", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to '[DynamicData]' member '{0}.{1}' is a property so you should use 'DynamicDataSourceType.AutoDetect' or 'DynamicDataSourceType.Property' (auto detect is the default when not specified explicitly, and is recommended).
/// </summary>
internal static string DynamicDataShouldBeValidMessageFormat_SourceTypeProperty {
get {
return ResourceManager.GetString("DynamicDataShouldBeValidMessageFormat_SourceTypeProperty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to '[DynamicData]' member '{0}.{1}' is found more than once.
/// </summary>
internal static string DynamicDataShouldBeValidMessageFormat_TooManyMembers {
get {
return ResourceManager.GetString("DynamicDataShouldBeValidMessageFormat_TooManyMembers", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to DynamicData should be valid.
/// </summary>
internal static string DynamicDataShouldBeValidTitle {
get {
return ResourceManager.GetString("DynamicDataShouldBeValidTitle", 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 Public methods should be test methods (marked with `[TestMethod]`)..
/// </summary>
internal static string PublicMethodShouldBeTestMethodAnalyzerDescription {
get {
return ResourceManager.GetString("PublicMethodShouldBeTestMethodAnalyzerDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Public method '{0}' should be a test method.
/// </summary>
internal static string PublicMethodShouldBeTestMethodAnalyzerFormat {
get {
return ResourceManager.GetString("PublicMethodShouldBeTestMethodAnalyzerFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Public methods should be test methods.
/// </summary>
internal static string PublicMethodShouldBeTestMethodAnalyzerTitle {
get {
return ResourceManager.GetString("PublicMethodShouldBeTestMethodAnalyzerTitle", 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 Review or remove the assertion as its condition is known to be always true.
/// </summary>
internal static string ReviewAlwaysTrueAssertConditionAnalyzerMessageFormat {
get {
return ResourceManager.GetString("ReviewAlwaysTrueAssertConditionAnalyzerMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Assertion condition is always true.
/// </summary>
internal static string ReviewAlwaysTrueAssertConditionAnalyzerTitle {
get {
return ResourceManager.GetString("ReviewAlwaysTrueAssertConditionAnalyzerTitle", 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 be valid.
/// </summary>
internal static string TestClassShouldBeValidMessageFormat {
get {
return ResourceManager.GetString("TestClassShouldBeValidMessageFormat", 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 '[AssemblyInitialize]' 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 '[AssemblyInitialize]' 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 'abstract'
///-it should not be 'async void'
///-it should not be 'static'
///-it should not be a special method (finalizer, operator...).
///-it should not be generic
///-it should not take any parameter
///-return type should be 'void', 'Task' or 'ValueTask'
///
///The type declaring these methods should also respect the following rules:
///-The type should be a class
///-The class should be 'public' [rest of string was truncated]";.
/// </summary>
internal static string TestCleanupShouldBeValidDescription {
get {
return ResourceManager.GetString("TestCleanupShouldBeValidDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to TestCleanup method '{0}' signature is invalid.
/// </summary>
internal static string TestCleanupShouldBeValidMessageFormat {
get {
return ResourceManager.GetString("TestCleanupShouldBeValidMessageFormat", 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' should be a non-static field or property assigned in constructor or for a property set by MSTest, it should follow the layout:
///- it should be 'public' regardless of whether '[assembly: DiscoverInternals]' attribute is set or not.
///- it should not be 'static'
///- it should have a setter..
/// </summary>
internal static string TestContextShouldBeValidDescription {
get {
return ResourceManager.GetString("TestContextShouldBeValidDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Property 'TestContext' should be valid.
/// </summary>
internal static string TestContextShouldBeValidMessageFormat {
get {
return ResourceManager.GetString("TestContextShouldBeValidMessageFormat", 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 'abstract'
///-it should not be 'async void'
///-it should not be 'static'
///-it should not be a special method (finalizer, operator...).
///-it should not be generic
///-it should not take any parameter
///-return type should be 'void', 'Task' or 'ValueTask'
///
///The type declaring these methods should also respect the following rules:
///-The type should be a class
///-The class should be 'publ [rest of string was truncated]";.
/// </summary>
internal static string TestInitializeShouldBeValidDescription {
get {
return ResourceManager.GetString("TestInitializeShouldBeValidDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to TestInitialize method '{0}' signature is invalid.
/// </summary>
internal static string TestInitializeShouldBeValidMessageFormat {
get {
return ResourceManager.GetString("TestInitializeShouldBeValidMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to TestInitialize method should have valid layout.
/// </summary>
internal static string TestInitializeShouldBeValidTitle {
get {
return ResourceManager.GetString("TestInitializeShouldBeValidTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Test methods, methods marked with the '[TestMethod]' 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'
///- it should may be generic as long as type parameters can be inferred and argument types are compatible
///- it should not be 'abstract'
///- return type should be 'void', 'Task' or 'ValueTask'
///- it should not be 'async void'
///- it should not be a special me [rest of string was truncated]";.
/// </summary>
internal static string TestMethodShouldBeValidDescription {
get {
return ResourceManager.GetString("TestMethodShouldBeValidDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Test method '{0}' signature is invalid.
/// </summary>
internal static string TestMethodShouldBeValidMessageFormat {
get {
return ResourceManager.GetString("TestMethodShouldBeValidMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Test methods should have valid layout.
/// </summary>
internal static string TestMethodShouldBeValidTitle {
get {
return ResourceManager.GetString("TestMethodShouldBeValidTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Test methods should not be ignored (marked with '[Ignore]')..
/// </summary>
internal static string TestMethodShouldNotBeIgnoredAnalyzerDescription {
get {
return ResourceManager.GetString("TestMethodShouldNotBeIgnoredAnalyzerDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Test method '{0}' should not be ignored.
/// </summary>
internal static string TestMethodShouldNotBeIgnoredAnalyzerFormat {
get {
return ResourceManager.GetString("TestMethodShouldNotBeIgnoredAnalyzerFormat", resourceCulture);
}
}
/// <summary>