File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
tests/Smdn.Reflection.ReverseGenerating.ListApi.Core/Smdn.Reflection.ReverseGenerating.ListApi Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ private static void CreateAssemblyFromSourceCode(
107
107
var location = $ "{ span . Path } ({ span . StartLinePosition . Line + 1 } ,{ span . StartLinePosition . Character + 1 } )";
108
108
109
109
#pragma warning disable CA1305 // cannot pass IFormatProvider
110
- TestContext . WriteLine ( $ "{ TestContext . CurrentContext . Test . FullName } { location } : { diag . Severity } { diag . Id } : { diag . GetMessage ( ) } ") ;
110
+ TestContext . Out . WriteLine ( $ "{ TestContext . CurrentContext . Test . FullName } { location } : { diag . Severity } { diag . Id } : { diag . GetMessage ( ) } ") ;
111
111
#pragma warning restore CA1305
112
112
}
113
113
@@ -518,7 +518,7 @@ string expectedEmbeddedResourcesOutput
518
518
519
519
[ Test ]
520
520
public void WriteHeader_WriteEmbeddedResources_HasNoEmbeddedResources (
521
- [ Values ( true , false ) ] bool writeEmbeddedResources
521
+ [ Values ] bool writeEmbeddedResources
522
522
)
523
523
{
524
524
var options = new ApiListWriterOptions ( ) ;
@@ -718,7 +718,7 @@ ApiListWriterOptions options
718
718
719
719
[ Test ]
720
720
public void WriteFooter (
721
- [ Values ( true , false ) ] bool writeFooter
721
+ [ Values ] bool writeFooter
722
722
)
723
723
{
724
724
var options = new ApiListWriterOptions ( ) ;
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ public void Init()
42
42
43
43
[ Test ]
44
44
public void UsingAssembly_ArgumentNull_AssemblyFile (
45
- [ Values ( true , false ) ] bool loadIntoReflectionOnlyContext
45
+ [ Values ] bool loadIntoReflectionOnlyContext
46
46
)
47
47
{
48
48
Assert . Throws < ArgumentNullException > ( ( ) => {
@@ -59,7 +59,7 @@ public void UsingAssembly_ArgumentNull_AssemblyFile(
59
59
60
60
[ Test ]
61
61
public void UsingAssembly_ArgumentNull_AssemblyStream (
62
- [ Values ( true , false ) ] bool loadIntoReflectionOnlyContext
62
+ [ Values ] bool loadIntoReflectionOnlyContext
63
63
)
64
64
{
65
65
Assert . Throws < ArgumentNullException > ( ( ) => {
@@ -77,7 +77,7 @@ public void UsingAssembly_ArgumentNull_AssemblyStream(
77
77
78
78
[ Test ]
79
79
public void UsingAssembly_ArgumentNull_ComponentAssemblyPath (
80
- [ Values ( true , false ) ] bool loadIntoReflectionOnlyContext
80
+ [ Values ] bool loadIntoReflectionOnlyContext
81
81
)
82
82
{
83
83
Assert . Throws < ArgumentNullException > ( ( ) => {
You can’t perform that action at this time.
0 commit comments