public void HasDottedImportNameReturnsFalseForMyNamespaceWithMyNamespaceTestImportedWithoutDtso()
        {
            string           code      = "import MyNamespaceTest";
            ParseInformation parseInfo = PythonParserHelper.CreateParseInfo(code);

            PythonResolverContext resolverContext = new PythonResolverContext(parseInfo);

            Assert.IsFalse(resolverContext.HasDottedImportNameThatStartsWith("MyNamespace"));
        }
        public void HasDottedImportNameReturnsTrueForSystemWithSystemWindowsFormsImported()
        {
            string           code      = "import System.Windows.Forms";
            ParseInformation parseInfo = PythonParserHelper.CreateParseInfo(code);

            PythonResolverContext resolverContext = new PythonResolverContext(parseInfo);

            Assert.IsTrue(resolverContext.HasDottedImportNameThatStartsWith("System"));
        }