Skip to content

Commit 4097b19

Browse files
Add some debugging code
1 parent 8836756 commit 4097b19

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

tests/ImageSharp.Web.Tests/TestUtilities/ServerTestBase.cs

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,13 @@ protected ServerTestBase(TFixture fixture, ITestOutputHelper outputHelper, strin
2121
this.OutputHelper = outputHelper;
2222
this.ImageSource = imageSource;
2323

24-
this.OutputHelper.WriteLine("EnvironmentalVariables");
25-
foreach (DictionaryEntry item in Environment.GetEnvironmentVariables())
26-
{
27-
this.OutputHelper.WriteLine($"Key = {item.Key}, Value = {item.Value}");
28-
}
24+
this.OutputHelper.WriteLine(typeof(TFixture).Name);
25+
26+
//this.OutputHelper.WriteLine("EnvironmentalVariables");
27+
//foreach (DictionaryEntry item in Environment.GetEnvironmentVariables())
28+
//{
29+
// this.OutputHelper.WriteLine($"Key = {item.Key}, Value = {item.Value}");
30+
//}
2931
}
3032

3133
public TFixture Fixture { get; }

0 commit comments

Comments
 (0)