forked from microsoft/vstest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPublicAPI.Shipped.txt
1119 lines (1119 loc) · 152 KB
/
PublicAPI.Shipped.txt
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
abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents.DiscoveredTests -> System.EventHandler<Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveredTestsEventArgs>
abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents.DiscoveryComplete -> System.EventHandler<Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs>
abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents.DiscoveryMessage -> System.EventHandler<Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunMessageEventArgs>
abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents.DiscoveryStart -> System.EventHandler<Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryStartEventArgs>
abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents.TestResult -> System.EventHandler<Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestResultEventArgs>
abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents.TestRunComplete -> System.EventHandler<Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs>
abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents.TestRunMessage -> System.EventHandler<Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunMessageEventArgs>
abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents.TestRunStart -> System.EventHandler<Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStartEventArgs>
abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation.FileName.get -> string
abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation.PerformCleanup.get -> bool
abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEvents.SessionEnd -> System.EventHandler<Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionEndEventArgs>
abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEvents.SessionStart -> System.EventHandler<Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionStartEventArgs>
abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEvents.TestCaseEnd -> System.EventHandler<Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEndEventArgs>
abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEvents.TestCaseStart -> System.EventHandler<Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseStartEventArgs>
abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEvents.TestHostLaunched -> System.EventHandler<Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestHostLaunchedEventArgs>
abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionLogger.LogError(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, string text) -> void
abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionLogger.LogError(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, string text, System.Exception exception) -> void
abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionLogger.LogWarning(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, string text) -> void
abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionSink.SendFileAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.FileTransferInformation fileTransferInformation) -> void
abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionSink.SendFileCompleted -> System.ComponentModel.AsyncCompletedEventHandler
abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollector.Initialize(System.Xml.XmlElement configurationElement, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEvents events, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionSink dataSink, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionLogger logger, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEnvironmentContext environmentContext) -> void
abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunSettings.ToXml() -> System.Xml.XmlElement
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.BlameCollectDumpKey = "CollectDump" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.BlameCollectHangDumpKey = "CollectHangDump" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.CollectDumpOnTestSessionHang = "CollectDumpOnTestSessionHang" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DataCollectionRunSettingsName = "DataCollectionRunSettings" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DataCollectorSettingName = "DataCollector" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DataCollectorsSettingName = "DataCollectors" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DefaultBatchSize = 10 -> long
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DefaultCpuCount = 1 -> int
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DefaultFramework = Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion.Framework40 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DefaultTreatTestAdapterErrorsAsWarnings = false -> bool
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DotNetFramework35 = ".NETFramework,Version=v3.5" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DotNetFramework40 = ".NETFramework,Version=v4.0" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DotNetFramework45 = ".NETFramework,Version=v4.5" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DotNetFramework451 = ".NETFramework,Version=v4.5.1" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DotNetFramework46 = ".NETFramework,Version=v4.6" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DotNetFrameworkCore10 = ".NETCoreApp,Version=v1.0" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DotNetFrameWorkStringPrefix = ".NETFramework,Version=" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DotNetFrameworkUap10 = "UAP,Version=v10.0" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.EmptyRunSettings = "<RunSettings></RunSettings>" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.InProcDataCollectionRunSettingsName = "InProcDataCollectionRunSettings" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.InProcDataCollectorSettingName = "InProcDataCollector" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.InProcDataCollectorsSettingName = "InProcDataCollectors" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerAssemblyQualifiedName = "assemblyQualifiedName" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerAssemblyQualifiedNameLower = "assemblyqualifiedname" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerCodeBase = "codeBase" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerCodeBaseLower = "codebase" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerConfigurationName = "Configuration" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerConfigurationNameLower = "configuration" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerEnabledName = "enabled" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerFriendlyName = "friendlyName" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerFriendlyNameLower = "friendlyname" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerRunSettingsName = "LoggerRunSettings" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerSettingName = "Logger" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggersSettingName = "Loggers" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerUriName = "uri" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.MinimumProtocolVersionWithDebugSupport = 3 -> int
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.ResultsDirectoryName = "TestResults" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.RunConfigurationSettingsName = "RunConfiguration" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.RunSettingsName = "RunSettings" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.TargetFrameworkAttributeFullName = "System.Runtime.Versioning.TargetFrameworkAttribute" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.TargetFrameworkName = "TargetFrameworkName" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.TestRunParametersName = "TestRunParameters" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.TraceLogMaxFileSizeInKB = "TraceLogMaxFileSizeInKb" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.TreatNoTestsAsError = "TreatNoTestsAsError" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.UnitTestExtensionType = "UnitTestExtension" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.UnspecifiedAdapterPath = "_none_" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.DefaultLoggerParameterNames.TargetFramework = "TargetFramework" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.DefaultLoggerParameterNames.TestRunDirectory = "TestRunDirectory" -> string
const Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.FilterHelper.EscapeCharacter = '\\' -> char
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IDiscoveryContext
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IDiscoveryContext.RunSettings.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunSettings
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IFrameworkHandle
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IFrameworkHandle.EnableShutdownAfterTestRun.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IFrameworkHandle.EnableShutdownAfterTestRun.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IFrameworkHandle.LaunchProcessWithDebuggerAttached(string filePath, string workingDirectory, string arguments, System.Collections.Generic.IDictionary<string, string> environmentVariables) -> int
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IFrameworkHandle2
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IFrameworkHandle2.AttachDebuggerToProcess(int pid) -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext.GetTestCaseFilter(System.Collections.Generic.IEnumerable<string> supportedProperties, System.Func<string, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty> propertyProvider) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestCaseFilterExpression
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext.InIsolation.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext.IsBeingDebugged.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext.IsDataCollectionEnabled.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext.KeepAlive.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext.SolutionDirectory.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext.TestRunDirectory.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunSettings
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunSettings.GetSettings(string settingsName) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ISettingsProvider
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunSettings.SettingsXml.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ISettingsProvider
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ISettingsProvider.Load(System.Xml.XmlReader reader) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestCaseDiscoverySink
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestCaseDiscoverySink.SendTestCase(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase discoveredTest) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestCaseFilterExpression
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestCaseFilterExpression.MatchTestCase(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase testCase, System.Func<string, object> propertyValueProvider) -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestCaseFilterExpression.TestCaseFilterValue.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestDiscoverer
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestDiscoverer.DiscoverTests(System.Collections.Generic.IEnumerable<string> sources, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IDiscoveryContext discoveryContext, Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.IMessageLogger logger, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestCaseDiscoverySink discoverySink) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutionRecorder
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutionRecorder.RecordAttachments(System.Collections.Generic.IList<Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet> attachmentSets) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutionRecorder.RecordEnd(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase testCase, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome outcome) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutionRecorder.RecordResult(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult testResult) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutionRecorder.RecordStart(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase testCase) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutor
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutor.Cancel() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutor.RunTests(System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase> tests, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext runContext, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IFrameworkHandle frameworkHandle) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutor.RunTests(System.Collections.Generic.IEnumerable<string> sources, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext runContext, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IFrameworkHandle frameworkHandle) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutor2
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutor2.ShouldAttachToTestHost(System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase> tests, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext runContext) -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutor2.ShouldAttachToTestHost(System.Collections.Generic.IEnumerable<string> sources, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext runContext) -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestCanceledException
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestCanceledException.TestCanceledException() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestCanceledException.TestCanceledException(string message) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestCanceledException.TestCanceledException(string message, System.Exception innerException) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestPlatformFormatException
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestPlatformFormatException.FilterValue.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestPlatformFormatException.TestPlatformFormatException() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestPlatformFormatException.TestPlatformFormatException(string message) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestPlatformFormatException.TestPlatformFormatException(string message, string filterValue) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestPlatformFormatException.TestPlatformFormatException(string message, System.Exception innerException) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture
Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture.ARM64 = 5 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture
Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture.AnyCPU = 4 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture
Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture.ARM = 3 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture
Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture.Default = 0 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture
Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture.X64 = 2 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture
Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture.X86 = 1 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture
Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet
Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet.Attachments.get -> System.Collections.Generic.IList<Microsoft.VisualStudio.TestPlatform.ObjectModel.UriDataAttachment>
Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet.AttachmentSet(System.Uri uri, string displayName) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet.DisplayName.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet.Uri.get -> System.Uri
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.BaseTestRunCriteria(long frequencyOfRunStatsChangeEvent) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.BaseTestRunCriteria(long frequencyOfRunStatsChangeEvent, bool keepAlive) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.BaseTestRunCriteria(long frequencyOfRunStatsChangeEvent, bool keepAlive, string testSettings) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.BaseTestRunCriteria(long frequencyOfRunStatsChangeEvent, bool keepAlive, string testSettings, System.TimeSpan runStatsChangeEventTimeout) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.BaseTestRunCriteria(long frequencyOfRunStatsChangeEvent, bool keepAlive, string testSettings, System.TimeSpan runStatsChangeEventTimeout, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher testHostLauncher) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.BaseTestRunCriteria(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria runCriteria) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.Equals(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria other) -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.FrequencyOfRunStatsChangeEvent.get -> long
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.KeepAlive.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.RunStatsChangeEventTimeout.get -> System.TimeSpan
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.TestHostLauncher.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.TestRunSettings.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.CustomHostLaunchAckPayload
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.CustomHostLaunchAckPayload.CustomHostLaunchAckPayload() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.CustomHostLaunchAckPayload.ErrorMessage.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.CustomHostLaunchAckPayload.ErrorMessage.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.CustomHostLaunchAckPayload.HostProcessId.get -> int
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.CustomHostLaunchAckPayload.HostProcessId.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveredTestsEventArgs
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveredTestsEventArgs.DiscoveredTestCases.get -> System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveredTestsEventArgs.DiscoveredTestsEventArgs(System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase> discoveredTestCases) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.DiscoveryCompleteEventArgs(long totalTests, bool isAborted) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.IsAborted.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.Metrics.get -> System.Collections.Generic.IDictionary<string, object>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.Metrics.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.TotalCount.get -> long
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.AdapterSourceMap.get -> System.Collections.Generic.Dictionary<string, System.Collections.Generic.IEnumerable<string>>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.DiscoveredTestEventTimeout.get -> System.TimeSpan
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.DiscoveryCriteria() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.DiscoveryCriteria(System.Collections.Generic.IEnumerable<string> sources, long frequencyOfDiscoveredTestsEvent, string testSettings) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.DiscoveryCriteria(System.Collections.Generic.IEnumerable<string> sources, long frequencyOfDiscoveredTestsEvent, System.TimeSpan discoveredTestEventTimeout, string runSettings) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.FrequencyOfDiscoveredTestsEvent.get -> long
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.Package.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.Package.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.RunSettings.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.Sources.get -> System.Collections.Generic.IEnumerable<string>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.TestCaseFilter.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.TestCaseFilter.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryRequestPayload
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryRequestPayload.DiscoveryRequestPayload() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryRequestPayload.RunSettings.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryRequestPayload.RunSettings.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryRequestPayload.Sources.get -> System.Collections.Generic.IEnumerable<string>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryRequestPayload.Sources.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryRequestPayload.TestPlatformOptions.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryRequestPayload.TestPlatformOptions.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryStartEventArgs
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryStartEventArgs.DiscoveryCriteria.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryStartEventArgs.DiscoveryStartEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria discoveryCriteria) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.EditorAttachDebuggerAckPayload
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.EditorAttachDebuggerAckPayload.Attached.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.EditorAttachDebuggerAckPayload.Attached.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.EditorAttachDebuggerAckPayload.EditorAttachDebuggerAckPayload() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.EditorAttachDebuggerAckPayload.ErrorMessage.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.EditorAttachDebuggerAckPayload.ErrorMessage.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions.Equals(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions other) -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions.FilterOptions() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions.FilterRegEx.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions.FilterRegEx.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions.FilterRegExReplacement.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions.FilterRegExReplacement.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IBaseProxy
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IBaseProxy.UpdateTestProcessStartInfo(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo testProcessStartInfo) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IDiscoveryRequest
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IDiscoveryRequest.Abort() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IDiscoveryRequest.DiscoverAsync() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IDiscoveryRequest.DiscoveryCriteria.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IDiscoveryRequest.OnDiscoveredTests -> System.EventHandler<Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveredTestsEventArgs>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IDiscoveryRequest.OnDiscoveryComplete -> System.EventHandler<Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IDiscoveryRequest.OnDiscoveryMessage -> System.EventHandler<Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunMessageEventArgs>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IDiscoveryRequest.OnDiscoveryStart -> System.EventHandler<Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryStartEventArgs>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IMetricsCollection
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IMetricsCollection.Add(string metric, object value) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IMetricsCollection.Metrics.get -> System.Collections.Generic.IDictionary<string, object>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher.IsDebug.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher.LaunchTestHost(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo defaultTestHostStartInfo) -> int
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher.LaunchTestHost(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo defaultTestHostStartInfo, System.Threading.CancellationToken cancellationToken) -> int
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher2
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher2.AttachDebuggerToProcess(int pid) -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher2.AttachDebuggerToProcess(int pid, System.Threading.CancellationToken cancellationToken) -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequest
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequest.OnRawMessageReceived -> System.EventHandler<string>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequest.WaitForCompletion(int timeout) -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequestData
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequestData.IsTelemetryOptedIn.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequestData.IsTelemetryOptedIn.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequestData.MetricsCollection.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IMetricsCollection
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequestData.MetricsCollection.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequestData.ProtocolConfig.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ProtocolConfig
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequestData.ProtocolConfig.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler.HandleDiscoveredTests(System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase> discoveredTestCases) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler.HandleDiscoveryComplete(long totalTests, System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase> lastChunk, bool isAborted) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2.HandleDiscoveredTests(System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase> discoveredTestCases) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2.HandleDiscoveryComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs discoveryCompleteEventArgs, System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase> lastChunk) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestLogger
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestLogger.Initialize(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents events, string testRunDirectory) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestLoggerWithParameters
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestLoggerWithParameters.Initialize(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents events, System.Collections.Generic.Dictionary<string, string> parameters) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestMessageEventHandler
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestMessageEventHandler.HandleLogMessage(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel level, string message) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestMessageEventHandler.HandleRawMessage(string rawMessage) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestPlatform
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestPlatform.ClearExtensions() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestPlatform.CreateDiscoveryRequest(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequestData requestData, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria discoveryCriteria, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IDiscoveryRequest
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestPlatform.CreateTestRunRequest(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequestData requestData, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria testRunCriteria, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestPlatform.StartTestSession(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequestData requestData, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCriteria criteria, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestPlatform.UpdateExtensions(System.Collections.Generic.IEnumerable<string> pathToAdditionalExtensions, bool skipExtensionFilters) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestPlatformCapabilities
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestPlatformCapabilities.TestPlatformType.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformType
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunAttachmentsProcessingEventsHandler
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunAttachmentsProcessingEventsHandler.HandleProcessedAttachmentsChunk(System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet> attachments) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunAttachmentsProcessingEventsHandler.HandleTestRunAttachmentsProcessingComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingCompleteEventArgs attachmentsProcessingCompleteEventArgs, System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet> lastChunk) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunAttachmentsProcessingEventsHandler.HandleTestRunAttachmentsProcessingProgress(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingProgressEventArgs AttachmentsProcessingProgressEventArgs) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunConfiguration
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunConfiguration.FrequencyOfRunStatsChangeEvent.get -> long
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunConfiguration.HasSpecificSources.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunConfiguration.HasSpecificTests.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunConfiguration.Tests.get -> System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler.HandleTestRunComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs testRunCompleteArgs, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs lastChunkArgs, System.Collections.Generic.ICollection<Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet> runContextAttachments, System.Collections.Generic.ICollection<string> executorUris) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler.HandleTestRunStatsChange(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs testRunChangedArgs) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler.LaunchProcessWithDebuggerAttached(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo testProcessStartInfo) -> int
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler2
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler2.AttachDebuggerToProcess(int pid) -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest.Abort() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest.CancelAsync() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest.DataCollectionMessage -> System.EventHandler<Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.DataCollectionMessageEventArgs>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest.ExecuteAsync() -> int
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest.OnRunCompletion -> System.EventHandler<Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest.OnRunStart -> System.EventHandler<Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStartEventArgs>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest.OnRunStatsChange -> System.EventHandler<Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest.State.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunState
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest.TestRunConfiguration.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunConfiguration
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest.TestRunMessage -> System.EventHandler<Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunMessageEventArgs>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunStatistics
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunStatistics.ExecutedTests.get -> long
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunStatistics.Stats.get -> System.Collections.Generic.IDictionary<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome, long>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunStatistics.this[Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome testOutcome].get -> long
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler.HandleStartTestSessionComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler.HandleStopTestSessionComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, bool stopped) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionAckPayload
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionAckPayload.StartTestSessionAckPayload() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionAckPayload.TestSessionInfo.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionAckPayload.TestSessionInfo.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload.HasCustomHostLauncher.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload.HasCustomHostLauncher.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload.IsDebuggingEnabled.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload.IsDebuggingEnabled.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload.RunSettings.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload.RunSettings.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload.Sources.get -> System.Collections.Generic.IList<string>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload.Sources.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload.StartTestSessionPayload() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload.TestPlatformOptions.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload.TestPlatformOptions.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StopTestSessionAckPayload
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StopTestSessionAckPayload.IsStopped.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StopTestSessionAckPayload.IsStopped.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StopTestSessionAckPayload.StopTestSessionAckPayload() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StopTestSessionAckPayload.TestSessionInfo.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StopTestSessionAckPayload.TestSessionInfo.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ProtocolConfig
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ProtocolConfig.ProtocolConfig() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ProtocolConfig.Version.get -> int
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ProtocolConfig.Version.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.RequestExtensions
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCriteria
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCriteria.RunSettings.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCriteria.RunSettings.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCriteria.Sources.get -> System.Collections.Generic.IList<string>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCriteria.Sources.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCriteria.StartTestSessionCriteria() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCriteria.TestHostLauncher.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCriteria.TestHostLauncher.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents.TestLoggerEvents() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions.CollectMetrics.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions.CollectMetrics.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions.FilterOptions.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions.FilterOptions.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions.SkipDefaultAdapters.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions.SkipDefaultAdapters.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions.TestCaseFilter.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions.TestCaseFilter.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions.TestPlatformOptions() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformType
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformType.InProc = 0 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformType
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformType.OutOfProc = 1 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformType
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingCompleteEventArgs
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingCompleteEventArgs.Error.get -> System.Exception
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingCompleteEventArgs.IsCanceled.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingCompleteEventArgs.Metrics.get -> System.Collections.Generic.IDictionary<string, object>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingCompleteEventArgs.Metrics.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingCompleteEventArgs.TestRunAttachmentsProcessingCompleteEventArgs(bool isCanceled, System.Exception error) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingPayload
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingPayload.Attachments.get -> System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingPayload.Attachments.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingPayload.CollectMetrics.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingPayload.CollectMetrics.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingPayload.TestRunAttachmentsProcessingPayload() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingProgressEventArgs
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingProgressEventArgs.AttachmentProcessorsCount.get -> long
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingProgressEventArgs.CurrentAttachmentProcessorIndex.get -> long
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingProgressEventArgs.CurrentAttachmentProcessorProgress.get -> long
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingProgressEventArgs.CurrentAttachmentProcessorUris.get -> System.Collections.Generic.ICollection<System.Uri>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingProgressEventArgs.TestRunAttachmentsProcessingProgressEventArgs(long currentAttachmentProcessorIndex, System.Collections.Generic.ICollection<System.Uri> currentAttachmentProcessorUris, long currentAttachmentProcessorProgress, long attachmentProcessorsCount) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs.ActiveTests.get -> System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs.NewTestResults.get -> System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs.TestRunChangedEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunStatistics stats, System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult> newTestResults, System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase> activeTests) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs.TestRunStatistics.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunStatistics
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.AttachmentSets.get -> System.Collections.ObjectModel.Collection<Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.ElapsedTimeInRunningTests.get -> System.TimeSpan
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.Error.get -> System.Exception
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.IsAborted.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.IsCanceled.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.Metrics.get -> System.Collections.Generic.IDictionary<string, object>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.Metrics.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.TestRunCompleteEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunStatistics stats, bool isCanceled, bool isAborted, System.Exception error, System.Collections.ObjectModel.Collection<Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet> attachmentSets, System.TimeSpan elapsedTime) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.TestRunStatistics.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunStatistics
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.AdapterSourceMap.get -> System.Collections.Generic.Dictionary<string, System.Collections.Generic.IEnumerable<string>>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.DebugEnabledForTestSession.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.DebugEnabledForTestSession.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.Equals(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria other) -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.FilterOptions.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.HasSpecificSources.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.HasSpecificTests.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.Sources.get -> System.Collections.Generic.IEnumerable<string>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestCaseFilter.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.Dictionary<string, System.Collections.Generic.IEnumerable<string>> adapterSourceMap, long frequencyOfRunStatsChangeEvent, bool keepAlive, string testSettings, System.TimeSpan runStatsChangeEventTimeout, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher testHostLauncher) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase> tests, long frequencyOfRunStatsChangeEvent) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase> tests, long frequencyOfRunStatsChangeEvent, bool keepAlive) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase> tests, long frequencyOfRunStatsChangeEvent, bool keepAlive, string testSettings) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase> tests, long frequencyOfRunStatsChangeEvent, bool keepAlive, string testSettings, System.TimeSpan runStatsChangeEventTimeout) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase> tests, long frequencyOfRunStatsChangeEvent, bool keepAlive, string testSettings, System.TimeSpan runStatsChangeEventTimeout, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher testHostLauncher) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase> tests, long frequencyOfRunStatsChangeEvent, bool keepAlive, string testSettings, System.TimeSpan runStatsChangeEventTimeout, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher testHostLauncher, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, bool debugEnabledForTestSession) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase> tests, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria baseTestRunCriteria) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable<string> sources, long frequencyOfRunStatsChangeEvent) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable<string> sources, long frequencyOfRunStatsChangeEvent, bool keepAlive) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable<string> sources, long frequencyOfRunStatsChangeEvent, bool keepAlive, string testSettings) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable<string> sources, long frequencyOfRunStatsChangeEvent, bool keepAlive, string testSettings, System.TimeSpan runStatsChangeEventTimeout) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable<string> sources, long frequencyOfRunStatsChangeEvent, bool keepAlive, string testSettings, System.TimeSpan runStatsChangeEventTimeout, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher testHostLauncher) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable<string> sources, long frequencyOfRunStatsChangeEvent, bool keepAlive, string testSettings, System.TimeSpan runStatsChangeEventTimeout, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher testHostLauncher, string testCaseFilter, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions filterOptions) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable<string> sources, long frequencyOfRunStatsChangeEvent, bool keepAlive, string testSettings, System.TimeSpan runStatsChangeEventTimeout, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher testHostLauncher, string testCaseFilter, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions filterOptions, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, bool debugEnabledForTestSession) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable<string> sources, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria testRunCriteria) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.Tests.get -> System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestSessionInfo.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestSessionInfo.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.DebuggingEnabled.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.DebuggingEnabled.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.KeepAlive.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.KeepAlive.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.RunSettings.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.RunSettings.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.Sources.get -> System.Collections.Generic.List<string>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.Sources.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.TestCases.get -> System.Collections.Generic.List<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.TestCases.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.TestPlatformOptions.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.TestPlatformOptions.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.TestRunRequestPayload() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.TestSessionInfo.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.TestSessionInfo.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStartEventArgs
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStartEventArgs.TestRunCriteria.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStartEventArgs.TestRunStartEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria testRunCriteria) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunState
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunState.Aborted = 5 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunState
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunState.Canceled = 4 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunState
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunState.Completed = 3 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunState
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunState.InProgress = 2 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunState
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunState.None = 0 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunState
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunState.Pending = 1 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunState
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStatistics
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStatistics.ExecutedTests.get -> long
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStatistics.ExecutedTests.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStatistics.Stats.get -> System.Collections.Generic.IDictionary<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome, long>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStatistics.TestRunStatistics() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStatistics.TestRunStatistics(long executedTests, System.Collections.Generic.IDictionary<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome, long> stats) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStatistics.TestRunStatistics(System.Collections.Generic.IDictionary<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome, long> stats) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStatistics.this[Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome testOutcome].get -> long
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo.Equals(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo other) -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo.Id.get -> System.Guid
Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo.TestSessionInfo() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.ConnectionRole
Microsoft.VisualStudio.TestPlatform.ObjectModel.ConnectionRole.Client = 1 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.ConnectionRole
Microsoft.VisualStudio.TestPlatform.ObjectModel.ConnectionRole.Host = 0 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.ConnectionRole
Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation.BasicTransferInformation(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation.Context.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation.Description.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation.Description.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation.RequestId.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation.RequestId.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation.UserToken.get -> object
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation.UserToken.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.DataCollectionContext(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId sessionId) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.DataCollectionContext(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId sessionId, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId testExecId) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.DataCollectionContext(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId sessionId, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase testCase) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.DataCollectionContext(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase testCase) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.HasTestCase.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.SessionId.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.TestCase.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.TestExecId.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEnvironmentContext
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEnvironmentContext.DataCollectionEnvironmentContext(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext sessionDataCollectionContext) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEnvironmentContext.SessionDataCollectionContext.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEventArgs
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEventArgs.Context.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEventArgs.DataCollectionEventArgs() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEventArgs.DataCollectionEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEvents
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEvents.DataCollectionEvents() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionLogger
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionLogger.DataCollectionLogger() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionLogger.LogError(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, System.Exception exception) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionSink
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionSink.DataCollectionSink() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionSink.SendFileAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, string path, bool deleteFile) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionSink.SendFileAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, string path, string description, bool deleteFile) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollector
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollector.DataCollector() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollector.Dispose() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorFriendlyNameAttribute
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorFriendlyNameAttribute.DataCollectorFriendlyNameAttribute(string friendlyName) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorFriendlyNameAttribute.FriendlyName.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorMessageLevel
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorMessageLevel.Data = 3 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorMessageLevel
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorMessageLevel.Error = 0 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorMessageLevel
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorMessageLevel.Info = 2 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorMessageLevel
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorMessageLevel.Warning = 1 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorMessageLevel
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorTypeUriAttribute
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorTypeUriAttribute.DataCollectorTypeUriAttribute(string typeUri) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorTypeUriAttribute.TypeUri.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.FileTransferInformation
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.FileTransferInformation.FileTransferInformation(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, string path, bool deleteFile) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.FileTransferInformation.FileTransferInformation(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, string path, bool deleteFile, Microsoft.VisualStudio.TestPlatform.Utilities.Helpers.Interfaces.IFileHelper fileHelper) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.FileTransferInformation.Path.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.IDataCollectionSink
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.IDataCollectionSink.SendData(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext dataCollectionContext, string key, string value) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.IDataCollectorAttachmentProcessor
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.IDataCollectorAttachmentProcessor.GetExtensionUris() -> System.Collections.Generic.IEnumerable<System.Uri>
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.IDataCollectorAttachmentProcessor.ProcessAttachmentSetsAsync(System.Collections.Generic.ICollection<Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet> attachments, System.IProgress<int> progressReporter, Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.IMessageLogger logger, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task<System.Collections.Generic.ICollection<Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet>>
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.IDataCollectorAttachmentProcessor.SupportsIncrementalProcessing.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.IDataCollectorAttachments
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.IDataCollectorAttachments.GetExtensionUri() -> System.Uri
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.IDataCollectorAttachments.HandleDataCollectionAttachmentSets(System.Collections.Generic.ICollection<Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet> dataCollectionAttachments) -> System.Collections.Generic.ICollection<Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet>
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.ITestExecutionEnvironmentSpecifier
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.ITestExecutionEnvironmentSpecifier.GetTestExecutionEnvironmentVariables() -> System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>>
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.CompareTo(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId other) -> int
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.CompareTo(object obj) -> int
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.Equals(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId other) -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.Id.get -> System.Guid
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionEndEventArgs
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionEndEventArgs.SessionEndEventArgs() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionEndEventArgs.SessionEndEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId.Id.get -> System.Guid
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId.SessionId() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId.SessionId(System.Guid id) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionStartEventArgs
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionStartEventArgs.GetProperties() -> System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<string, object>>
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionStartEventArgs.GetPropertyValue(string property) -> object
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionStartEventArgs.GetPropertyValue<T>(string property) -> T
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionStartEventArgs.SessionStartEventArgs() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionStartEventArgs.SessionStartEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, System.Collections.Generic.IDictionary<string, object> properties) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionStartEventArgs.SessionStartEventArgs(System.Collections.Generic.IDictionary<string, object> properties) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEndEventArgs
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEndEventArgs.TestCaseEndEventArgs() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEndEventArgs.TestCaseEndEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase testElement, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome testOutcome) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEndEventArgs.TestCaseEndEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase testElement, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome testOutcome) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEndEventArgs.TestOutcome.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEventArgs
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEventArgs.IsChildTestCase.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEventArgs.TestCaseEventArgs() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEventArgs.TestCaseEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase testElement) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEventArgs.TestCaseEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, System.Guid testCaseId, string testCaseName, bool isChildTestCase) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEventArgs.TestCaseId.get -> System.Guid
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEventArgs.TestCaseName.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEventArgs.TestElement.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseFailureType
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseFailureType.Assertion = 1 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseFailureType
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseFailureType.MissingException = 4 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseFailureType
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseFailureType.None = 0 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseFailureType
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseFailureType.Other = 5 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseFailureType
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseFailureType.UnexpectedException = 3 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseFailureType
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseFailureType.UnhandledException = 2 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseFailureType
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseStartEventArgs
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseStartEventArgs.TestCaseStartEventArgs() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseStartEventArgs.TestCaseStartEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase testElement) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseStartEventArgs.TestCaseStartEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase testElement) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId.Id.get -> System.Guid
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId.TestExecId() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId.TestExecId(System.Guid id) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestHostLaunchedEventArgs
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestHostLaunchedEventArgs.TestHostLaunchedEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, int processId) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestHostLaunchedEventArgs.TestHostProcessId.get -> int
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestResultEventArgs
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestResultEventArgs.TestResult.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestResultEventArgs.TestResultEventArgs() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestResultEventArgs.TestResultEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult testResult) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestResultEventArgs.TestResultEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult testResult) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings.DataCollectionRunSettings() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings.DataCollectionRunSettings(string dataCollectionRootName, string dataCollectionsName, string dataCollectorName) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings.DataCollectorSettingsList.get -> System.Collections.ObjectModel.Collection<Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings>
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings.IsCollectionEnabled.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.InProcDataCollectionArgs
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestCaseEndArgs
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestCaseEndArgs.DataCollectionContext.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestCaseEndArgs.TestCaseEndArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext dataCollectionContext, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome outcome) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestCaseEndArgs.TestOutcome.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestCaseStartArgs
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestCaseStartArgs.TestCase.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestCaseStartArgs.TestCaseStartArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase testCase) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionEndArgs
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionEndArgs.TestSessionEndArgs() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs.Configuration.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs.Configuration.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs.GetProperties() -> System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<string, object>>
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs.GetPropertyValue(string property) -> object
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs.GetPropertyValue<T>(string property) -> T
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs.TestSessionStartArgs() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs.TestSessionStartArgs(string configuration) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs.TestSessionStartArgs(System.Collections.Generic.IDictionary<string, object> properties) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.AssemblyQualifiedName.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.AssemblyQualifiedName.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.CodeBase.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.CodeBase.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.Configuration.get -> System.Xml.XmlElement
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.Configuration.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.DataCollectorSettings() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.FriendlyName.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.FriendlyName.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.IsEnabled.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.IsEnabled.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.ToXml() -> System.Xml.XmlElement
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.ToXml(string dataCollectorName) -> System.Xml.XmlElement
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.Uri.get -> System.Uri
Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.Uri.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DefaultExecutorUriAttribute
Microsoft.VisualStudio.TestPlatform.ObjectModel.DefaultExecutorUriAttribute.DefaultExecutorUriAttribute(string executorUri) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DefaultExecutorUriAttribute.ExecutorUri.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.DefaultLoggerParameterNames
Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaNavigationData
Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaNavigationData.DiaNavigationData(string fileName, int minLineNumber, int maxLineNumber) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaNavigationData.FileName.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaNavigationData.FileName.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaNavigationData.MaxLineNumber.get -> int
Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaNavigationData.MaxLineNumber.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaNavigationData.MinLineNumber.get -> int
Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaNavigationData.MinLineNumber.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaSession
Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaSession.DiaSession(string binaryPath) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaSession.DiaSession(string binaryPath, string searchPath) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaSession.Dispose() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaSession.GetNavigationData(string declaringTypeName, string methodName) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaNavigationData
Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaSession.GetNavigationDataForMethod(string declaringTypeName, string methodName) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation.INavigationData
Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace (forwarded, contained in Microsoft.TestPlatform.CoreUtilities)
Microsoft.VisualStudio.TestPlatform.ObjectModel.ExtensionUriAttribute
Microsoft.VisualStudio.TestPlatform.ObjectModel.ExtensionUriAttribute.ExtensionUri.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.ExtensionUriAttribute.ExtensionUriAttribute(string extensionUri) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.FileExtensionAttribute
Microsoft.VisualStudio.TestPlatform.ObjectModel.FileExtensionAttribute.FileExtension.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.FileExtensionAttribute.FileExtensionAttribute(string fileExtension) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework
Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework.Name.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework.Version.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion
Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion.Framework35 = 1 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion
Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion.Framework40 = 2 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion
Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion.Framework45 = 3 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion
Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion.FrameworkCore10 = 4 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion
Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion.FrameworkUap10 = 5 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion
Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion.None = 0 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion
Microsoft.VisualStudio.TestPlatform.ObjectModel.FriendlyNameAttribute
Microsoft.VisualStudio.TestPlatform.ObjectModel.FriendlyNameAttribute.FriendlyName.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.FriendlyNameAttribute.FriendlyNameAttribute(string friendlyName) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.HostProviderEventArgs
Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.HostProviderEventArgs.Data.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.HostProviderEventArgs.Data.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.HostProviderEventArgs.ErrroCode.get -> int
Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.HostProviderEventArgs.ErrroCode.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.HostProviderEventArgs.HostProviderEventArgs(string message) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.HostProviderEventArgs.HostProviderEventArgs(string message, int errorCode, int processId) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.HostProviderEventArgs.ProcessId.get -> int
Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.HostProviderEventArgs.ProcessId.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider
Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.CanExecuteCurrentRunConfiguration(string runsettingsXml) -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.CleanTestHostAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task
Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.GetTestHostConnectionInfo() -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestHostConnectionInfo
Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.GetTestHostProcessStartInfo(System.Collections.Generic.IEnumerable<string> sources, System.Collections.Generic.IDictionary<string, string> environmentVariables, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo connectionInfo) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo
Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.GetTestPlatformExtensions(System.Collections.Generic.IEnumerable<string> sources, System.Collections.Generic.IEnumerable<string> extensions) -> System.Collections.Generic.IEnumerable<string>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.GetTestSources(System.Collections.Generic.IEnumerable<string> sources) -> System.Collections.Generic.IEnumerable<string>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.HostExited -> System.EventHandler<Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.HostProviderEventArgs>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.HostLaunched -> System.EventHandler<Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.HostProviderEventArgs>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.Initialize(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.IMessageLogger logger, string runsettingsXml) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.LaunchTestHostAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo testHostStartInfo, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task<bool>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.SetCustomLauncher(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customLauncher) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.Shared.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider2
Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider2.AttachDebuggerToTestHost() -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.InProcDataCollector.InProcDataCollection
Microsoft.VisualStudio.TestPlatform.ObjectModel.InProcDataCollector.InProcDataCollection.Initialize(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.IDataCollectionSink dataCollectionSink) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.InProcDataCollector.InProcDataCollection.TestCaseEnd(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestCaseEndArgs testCaseEndArgs) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.InProcDataCollector.InProcDataCollection.TestCaseStart(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestCaseStartArgs testCaseStartArgs) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.InProcDataCollector.InProcDataCollection.TestSessionEnd(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionEndArgs testSessionEndArgs) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.InProcDataCollector.InProcDataCollection.TestSessionStart(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs testSessionStartArgs) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.LazyPropertyValue<T>
Microsoft.VisualStudio.TestPlatform.ObjectModel.LazyPropertyValue<T>.LazyPropertyValue(System.Func<T> getValue) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.LazyPropertyValue<T>.Value.get -> T
Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerRunSettings
Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerRunSettings.GetExistingLoggerIndex(Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings loggerSettings) -> int
Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerRunSettings.LoggerRunSettings() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerRunSettings.LoggerSettingsList.get -> System.Collections.ObjectModel.Collection<Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings>
Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings
Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.AssemblyQualifiedName.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.AssemblyQualifiedName.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.CodeBase.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.CodeBase.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.Configuration.get -> System.Xml.XmlElement
Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.Configuration.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.FriendlyName.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.FriendlyName.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.IsEnabled.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.IsEnabled.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.LoggerSettings() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.ToXml() -> System.Xml.XmlElement
Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.ToXml(string loggerName) -> System.Xml.XmlElement
Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.Uri.get -> System.Uri
Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.Uri.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.DataCollectionMessageEventArgs
Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.DataCollectionMessageEventArgs.DataCollectionMessageEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel level, string message) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.DataCollectionMessageEventArgs.FriendlyName.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.DataCollectionMessageEventArgs.FriendlyName.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.DataCollectionMessageEventArgs.TestCaseId.get -> System.Guid
Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.DataCollectionMessageEventArgs.TestCaseId.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.DataCollectionMessageEventArgs.Uri.get -> System.Uri
Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.DataCollectionMessageEventArgs.Uri.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.IMessageLogger
Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.IMessageLogger.SendMessage(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel testMessageLevel, string message) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel
Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel.Error = 2 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel
Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel.Informational = 0 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel
Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel.Warning = 1 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel
Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestResultEventArgs
Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestResultEventArgs.Result.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult
Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestResultEventArgs.TestResultEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult result) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunMessageEventArgs
Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunMessageEventArgs.Level.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel
Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunMessageEventArgs.Level.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunMessageEventArgs.Message.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunMessageEventArgs.Message.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunMessageEventArgs.TestRunMessageEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel level, string message) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunStartedEventArgs
Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunStartedEventArgs.ProcessId.get -> int
Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunStartedEventArgs.TestRunStartedEventArgs(int processId) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation.INavigationData
Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation.INavigationData.FileName.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation.INavigationData.FileName.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation.INavigationData.MaxLineNumber.get -> int
Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation.INavigationData.MaxLineNumber.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation.INavigationData.MinLineNumber.get -> int
Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation.INavigationData.MinLineNumber.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation.INavigationSession
Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation.INavigationSession.GetNavigationDataForMethod(string declaringTypeName, string methodName) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation.INavigationData
Microsoft.VisualStudio.TestPlatform.ObjectModel.ProcessExitedException
Microsoft.VisualStudio.TestPlatform.ObjectModel.ProcessExitedException.ProcessExitedException(string message) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.ProcessExitedException.ProcessExitedException(string message, System.Exception inner) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Resources.CommonResources
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.BatchSize.get -> long
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.BatchSize.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.BatchSizeSet.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.BinariesRoot.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.CollectSourceInformationSet.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.DesignMode.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.DesignMode.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.DesignModeSet.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.DisableAppDomain.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.DisableAppDomain.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.DisableAppDomainSet.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.DisableParallelization.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.DisableParallelization.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.DisableParallelizationSet.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.DotnetHostPath.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.ExecutionThreadApartmentState.get -> Microsoft.VisualStudio.TestPlatform.PlatformAbstractions.PlatformApartmentState
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.ExecutionThreadApartmentState.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.InIsolation.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.InIsolation.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.MaxCpuCount.get -> int
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.MaxCpuCount.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.MaxCpuCountSet.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.ResultsDirectory.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.ResultsDirectory.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.ResultsDirectorySet.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.RunConfiguration() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.ShouldCollectSourceInformation.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.ShouldCollectSourceInformation.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.SolutionDirectory.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.SolutionDirectory.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TargetDevice.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TargetDevice.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TargetFramework.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TargetFramework.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TargetFrameworkSet.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TargetFrameworkVersion.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TargetFrameworkVersion.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TargetPlatform.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TargetPlatform.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TargetPlatformSet.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TestAdaptersPaths.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TestAdaptersPaths.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TestAdaptersPathsSet.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TestCaseFilter.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TestSessionTimeout.get -> long
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TestSessionTimeout.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TreatNoTestsAsError.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TreatNoTestsAsError.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TreatTestAdapterErrorsAsWarnings.get -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TreatTestAdapterErrorsAsWarnings.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.SettingsException
Microsoft.VisualStudio.TestPlatform.ObjectModel.SettingsException.SettingsException() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.SettingsException.SettingsException(string message) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.SettingsException.SettingsException(string message, System.Exception innerException) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.SettingsNameAttribute
Microsoft.VisualStudio.TestPlatform.ObjectModel.SettingsNameAttribute.SettingsName.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.SettingsNameAttribute.SettingsNameAttribute(string settingsName) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.CodeFilePath.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.CodeFilePath.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.DisplayName.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.DisplayName.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.ExecutorUri.get -> System.Uri
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.ExecutorUri.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.FullyQualifiedName.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.FullyQualifiedName.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.Id.get -> System.Guid
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.Id.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.LineNumber.get -> int
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.LineNumber.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.LocalExtensionData.get -> object
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.LocalExtensionData.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.Source.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.Source.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.TestCase() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.TestCase(string fullyQualifiedName, System.Uri executorUri, string source) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCaseProperties
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestHostConnectionInfo
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestHostConnectionInfo.Endpoint.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestHostConnectionInfo.Endpoint.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestHostConnectionInfo.Role.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.ConnectionRole
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestHostConnectionInfo.Role.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestHostConnectionInfo.TestHostConnectionInfo() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestHostConnectionInfo.Transport.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Transport
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestHostConnectionInfo.Transport.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.CacheLazyValuesOnSerializing(System.Runtime.Serialization.StreamingContext context) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.GetProperties() -> System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty, object>>
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.GetPropertyValue(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty property) -> object
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.GetPropertyValue<T>(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty property, T defaultValue) -> T
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.GetPropertyValue<T>(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty property, T defaultValue, System.Globalization.CultureInfo culture) -> T
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.RemovePropertyValue(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty property) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.SetPropertyValue(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty property, object value) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.SetPropertyValue<T>(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty property, Microsoft.VisualStudio.TestPlatform.ObjectModel.LazyPropertyValue<T> value) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.SetPropertyValue<T>(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty property, Microsoft.VisualStudio.TestPlatform.ObjectModel.LazyPropertyValue<T> value, System.Globalization.CultureInfo culture) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.SetPropertyValue<T>(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty property, T value) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.SetPropertyValue<T>(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty property, T value, System.Globalization.CultureInfo culture) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.TestObject() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.Traits.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TraitCollection
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome.Failed = 2 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome.None = 0 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome.NotFound = 4 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome.Passed = 1 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome.Skipped = 3 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcomeHelper
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPlatformException
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPlatformException.TestPlatformException(string message) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPlatformException.TestPlatformException(string message, System.Exception innerException) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessAttachDebuggerPayload
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessAttachDebuggerPayload.ProcessID.get -> int
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessAttachDebuggerPayload.ProcessID.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessAttachDebuggerPayload.TestProcessAttachDebuggerPayload(int pid) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.Arguments.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.Arguments.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.CustomProperties.get -> System.Collections.Generic.IDictionary<string, string>
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.CustomProperties.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.EnvironmentVariables.get -> System.Collections.Generic.IDictionary<string, string>
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.EnvironmentVariables.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.FileName.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.FileName.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.TestProcessStartInfo() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.WorkingDirectory.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.WorkingDirectory.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Attributes.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPropertyAttributes
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Attributes.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Category.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Category.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Description.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Description.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Equals(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty other) -> bool
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.GetRealObject(System.Runtime.Serialization.StreamingContext context) -> object
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.GetValueType() -> System.Type
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Id.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Id.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Label.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Label.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.ValidateValueCallback.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.ValidateValueCallback
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.ValueType.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.ValueType.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPropertyAttributes
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPropertyAttributes.Hidden = 1 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPropertyAttributes
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPropertyAttributes.Immutable = 2 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPropertyAttributes
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPropertyAttributes.None = 0 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPropertyAttributes
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPropertyAttributes.Trait = 4 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPropertyAttributes
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.Attachments.get -> System.Collections.ObjectModel.Collection<Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet>
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.ComputerName.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.ComputerName.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.DisplayName.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.DisplayName.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.Duration.get -> System.TimeSpan
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.Duration.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.EndTime.get -> System.DateTimeOffset
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.EndTime.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.ErrorMessage.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.ErrorMessage.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.ErrorStackTrace.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.ErrorStackTrace.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.Messages.get -> System.Collections.ObjectModel.Collection<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultMessage>
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.Outcome.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.Outcome.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.StartTime.get -> System.DateTimeOffset
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.StartTime.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.TestCase.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.TestResult(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase testCase) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultMessage
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultMessage.Category.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultMessage.TestResultMessage(string category, string text) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultMessage.Text.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultProperties
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo.ConnectionInfo.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestHostConnectionInfo
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo.ConnectionInfo.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo.LogFile.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo.LogFile.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo.Port.get -> int
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo.Port.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo.RunnerProcessId.get -> int
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo.RunnerProcessId.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo.TestRunnerConnectionInfo() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo.TraceLevel.get -> int
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo.TraceLevel.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfoExtensions
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunSettings
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunSettings.Name.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunSettings.TestRunSettings(string name) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Trait
Microsoft.VisualStudio.TestPlatform.ObjectModel.Trait.Name.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.Trait.Name.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Trait.Trait(string name, string value) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Trait.Value.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.Trait.Value.set -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TraitCollection
Microsoft.VisualStudio.TestPlatform.ObjectModel.TraitCollection.Add(Microsoft.VisualStudio.TestPlatform.ObjectModel.Trait trait) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TraitCollection.Add(string name, string value) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TraitCollection.AddRange(System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.Trait> traits) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.TraitCollection.GetEnumerator() -> System.Collections.Generic.IEnumerator<Microsoft.VisualStudio.TestPlatform.ObjectModel.Trait>
Microsoft.VisualStudio.TestPlatform.ObjectModel.Transport
Microsoft.VisualStudio.TestPlatform.ObjectModel.Transport.Sockets = 0 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Transport
Microsoft.VisualStudio.TestPlatform.ObjectModel.UapConstants
Microsoft.VisualStudio.TestPlatform.ObjectModel.UriDataAttachment
Microsoft.VisualStudio.TestPlatform.ObjectModel.UriDataAttachment.Description.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.UriDataAttachment.Uri.get -> System.Uri
Microsoft.VisualStudio.TestPlatform.ObjectModel.UriDataAttachment.UriDataAttachment(System.Uri uri, string description) -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.AssemblyHelper
Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.EqtHash
Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.FilterHelper
Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.StringUtilities
Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlReaderUtilities
Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlRunSettingsUtilities
Microsoft.VisualStudio.TestPlatform.ObjectModel.ValidateArg (forwarded, contained in Microsoft.TestPlatform.CoreUtilities)
Microsoft.VisualStudio.TestPlatform.ObjectModel.ValidateValueCallback
Microsoft.VisualStudio.TestPlatform.TestSDKAutoGeneratedCode
Microsoft.VisualStudio.TestPlatform.TestSDKAutoGeneratedCode.TestSDKAutoGeneratedCode() -> void
override Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet.ToString() -> string
override Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.Equals(object obj) -> bool
override Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.GetHashCode() -> int
override Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions.Equals(object obj) -> bool
override Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions.GetHashCode() -> int
override Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions.ToString() -> string
override Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.Equals(object obj) -> bool
override Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.GetHashCode() -> int
override Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.ToString() -> string
override Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo.Equals(object obj) -> bool
override Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo.GetHashCode() -> int
override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.Equals(object obj) -> bool
override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.GetHashCode() -> int
override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.FileTransferInformation.FileName.get -> string
override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.FileTransferInformation.PerformCleanup.get -> bool
override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.Equals(object obj) -> bool
override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.GetHashCode() -> int
override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.ToString() -> string
override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId.Equals(object obj) -> bool
override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId.GetHashCode() -> int
override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId.ToString() -> string
override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId.Equals(object obj) -> bool
override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId.GetHashCode() -> int
override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId.ToString() -> string
override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings.ToXml() -> System.Xml.XmlElement
override Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework.ToString() -> string
override Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerRunSettings.ToXml() -> System.Xml.XmlElement
override Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunStartedEventArgs.ToString() -> string
override Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.ToXml() -> System.Xml.XmlElement
override Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.Properties.get -> System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty>
override Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.ToString() -> string
override Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Equals(object obj) -> bool
override Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.GetHashCode() -> int
override Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.ToString() -> string
override Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.Properties.get -> System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty>
override Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.ToString() -> string
override Microsoft.VisualStudio.TestPlatform.ObjectModel.UriDataAttachment.ToString() -> string
static Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.RequestExtensions.WaitForCompletion(this Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequest request) -> void
static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.operator !=(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context1, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context2) -> bool
static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.operator ==(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context1, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context2) -> bool
static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEnvironmentContext.CreateForLocalEnvironment() -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEnvironmentContext
static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEnvironmentContext.CreateForLocalEnvironment(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext sessionDataCollectionContext) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEnvironmentContext
static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.operator !=(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId left, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId right) -> bool
static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.operator ==(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId left, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId right) -> bool
static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId.Empty.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId
static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId.Empty.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId
static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings.CreateDataCollectionRunSettings(System.Xml.XmlReader reader, string dataCollectionName, string dataCollectorsName, string dataCollectorName) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings
static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings.FromXml(System.Xml.XmlReader reader) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings
static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings.FromXml(System.Xml.XmlReader reader, string dataCollectionName, string dataCollectorsName, string dataCollectorName) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings
static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.DoNotInitailize.get -> bool (forwarded, contained in Microsoft.TestPlatform.CoreUtilities)
static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.DoNotInitailize.set -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities)
static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.Error(string format, params object[] args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities)
static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.Error(string message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities)
static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.Error(System.Exception exceptionToTrace) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities)
static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.ErrorAssert(string format, params object[] args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities)
static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.ErrorIf(bool condition, string format, params object[] args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities)
static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.ErrorIf(bool condition, string message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities)
static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.ErrorOnInitialization.get -> string (forwarded, contained in Microsoft.TestPlatform.CoreUtilities)