public void ShowWarningsAsErrors()
        {
            var fullName = $"../../TestFiles/MyProject.csproj/new/warningsaserrors.csproj";
            var proj     = new Proj(fullName, "My Project", File.ReadAllText(fullName), new List <ProjItem>());
            var r        = ProjectSettingsTools.HasWarningsAsErrors(proj);

            r.Should().BeTrue();
        }
        public void ShowStyleCop()
        {
            var fullName = $"../../TestFiles/MyProject.csproj/new/stylecop.csproj";
            var proj     = new Proj(fullName, "My Project", File.ReadAllText(fullName), new List <ProjItem>());
            var r        = ProjectSettingsTools.HasStyleCopSetting(proj);

            r.Should().BeTrue();
        }