示例#1
0
        public static bool IsWorseMatchThan(this SectionMatch actualMatchKind, SectionMatch expectedMatchKind)
        {
            var lowestMatch = (int)expectedMatchKind;
            var actualMatch = (int)actualMatchKind;

            return(actualMatch > lowestMatch);
        }
示例#2
0
        public static bool IsBetterOrEqualMatchThan(this SectionMatch actualMatchKind, SectionMatch expectedMatchKind)
        {
            var lowestMatch = (int)expectedMatchKind;
            var actualMatch = (int)actualMatchKind;

            return(actualMatch <= lowestMatch);
        }