File tree 1 file changed +10
-0
lines changed
test/PowerShellEditorServices.Test/Session
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 10
10
using Microsoft . PowerShell . EditorServices . Test . Shared ;
11
11
using Microsoft . PowerShell . EditorServices . Utility ;
12
12
using Xunit ;
13
+ // TODO This is just for debugging tests. Can remove
14
+ using Xunit . Abstractions ;
13
15
14
16
namespace Microsoft . PowerShell . EditorServices . Test . Session
15
17
{
16
18
public class WorkspaceTests
17
19
{
20
+ // TODO This is just for debugging tests. Can remove
21
+ private readonly ITestOutputHelper output ;
18
22
private static readonly Version PowerShellVersion = new Version ( "5.0" ) ;
19
23
24
+ // TODO This is just for debugging tests. Can remove
25
+ public WorkspaceTests ( ITestOutputHelper output )
26
+ {
27
+ this . output = output ;
28
+ }
29
+
20
30
[ Fact ]
21
31
[ Trait ( "Category" , "Workspace" ) ]
22
32
public void CanResolveWorkspaceRelativePath ( )
You can’t perform that action at this time.
0 commit comments