Beispiel #1
0
        public void BreakingChangeMultipleLinks()
        {
            var expected = ListTBC.DeepCopy();

            expected.BugLink = "https://bugrepro.org/id/105";

            ValidateParse(GetBreakingChangeMarkdown("MultipleBugLinks.md"), expected);
        }
        public void MissingData()
        {
            BreakingChange bc = ListTBC.DeepCopy();

            bc.ImpactScope    = BreakingChangeImpact.Unknown;
            bc.VersionBroken  = null;
            bc.ApplicableApis = null;
            ValidateParse(GetBreakingChangeMarkdown("MissingData.md"), bc);
        }