public void CorrectlyUnescapesPaths(string escapedPath, string expectedUnescapedPath)
        {
            string extensionUnescapedPath = PowerShellContext.UnescapeWildcardEscapedPath(escapedPath);

            Assert.Equal(expectedUnescapedPath, extensionUnescapedPath);
        }