Skip to content

Commit c179f45

Browse files
committed
d DROP ME Debug Tests
1 parent a54344c commit c179f45

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Diff for: test/PowerShellEditorServices.Test/Session/WorkspaceTests.cs

+10
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,23 @@
1010
using Microsoft.PowerShell.EditorServices.Test.Shared;
1111
using Microsoft.PowerShell.EditorServices.Utility;
1212
using Xunit;
13+
// TODO This is just for debugging tests. Can remove
14+
using Xunit.Abstractions;
1315

1416
namespace Microsoft.PowerShell.EditorServices.Test.Session
1517
{
1618
public class WorkspaceTests
1719
{
20+
// TODO This is just for debugging tests. Can remove
21+
private readonly ITestOutputHelper output;
1822
private static readonly Version PowerShellVersion = new Version("5.0");
1923

24+
// TODO This is just for debugging tests. Can remove
25+
public WorkspaceTests(ITestOutputHelper output)
26+
{
27+
this.output = output;
28+
}
29+
2030
[Fact]
2131
[Trait("Category", "Workspace")]
2232
public void CanResolveWorkspaceRelativePath()

0 commit comments

Comments
 (0)