Balakin.VSOutputEnhancer.Tests.UnitTests.StyleManagerTests.UnknownClassificationStyle C# (CSharp) Method

UnknownClassificationStyle() private method

private UnknownClassificationStyle ( ) : void
return void
        public void UnknownClassificationStyle()
        {
            var styleManager = Utils.CreateStyleManager(Theme.Light);
            var style = styleManager.GetStyleForClassificationType("UnknownClassification");
            Assert.IsNotNull(style);
            Assert.IsNull(style.Bold);
            Assert.IsNull(style.ForegroundColor);
        }