* Describes a platform on which the PowerShell extension should work, * including the test conditions (filesystem, environment variables).
| 14 | * including the test conditions (filesystem, environment variables). |
| 15 | */ |
| 16 | interface ITestPlatform { |
| 17 | name: string; |
| 18 | platformDetails: platform.IPlatformDetails; |
| 19 | filesystem: FileSystem.DirectoryItems; |
| 20 | environmentVars: Record<string, string>; |
| 21 | } |
| 22 | |
| 23 | /** |
| 24 | * A platform where the extension should find a PowerShell, |
nothing calls this directly
no outgoing calls
no test coverage detected