public void CorrectlyFullyEscapesPaths(string unescapedPath, string escapedPath)
        {
            string extensionEscapedPath = PowerShellContext.FullyPowerShellEscapePath(unescapedPath);

            Assert.Equal(escapedPath, extensionEscapedPath);
        }