예제 #1
0
        public void Properties_LookForUnknownCategoryAndPage_ReturnsNull()
        {
            CreateDTE();

            global::EnvDTE.Properties properties = dte.Properties("UnknownCategory", "UnknownPage");

            Assert.IsNull(properties);
        }
예제 #2
0
        public void Properties_LookForFontsAndColorsCategoryInTextEditorPageInUpperCase_ReturnsTextEditorFontsAndColorsProperties()
        {
            CreateDTE();

            global::EnvDTE.Properties properties = dte.Properties("FONTSANDCOLORS", "TEXTEDITOR");

            Assert.IsNotNull(properties);
        }
예제 #3
0
        public void Properties_LookForFontsAndColorsCategoryInTextEditorPage_ReturnsProperties()
        {
            CreateDTE();

            global::EnvDTE.Properties properties = dte.Properties("FontsAndColors", "TextEditor");

            Assert.IsNotNull(properties);
        }