public void ExpandCodeTypeFromPathTest(string type, string path, string expectedType)
        {
            var actual = ImportMarkdownSamplesCmdlet.ExpandCodeTypeFromPath(type, path);

            Assert.AreEqual(expectedType, actual, "Mismatch in actual");
        }
 public void Setup()
 {
     _cmdlet = _mocks.PartialMock <ImportMarkdownSamplesCmdlet>();
 }