Esempio n. 1
0
        public static bool IsWorseMatchThan(this SectionMatch actualMatchKind, SectionMatch expectedMatchKind)
        {
            var lowestMatch = (int)expectedMatchKind;
            var actualMatch = (int)actualMatchKind;

            return(actualMatch > lowestMatch);
        }
Esempio n. 2
0
        public static bool IsBetterOrEqualMatchThan(this SectionMatch actualMatchKind, SectionMatch expectedMatchKind)
        {
            var lowestMatch = (int)expectedMatchKind;
            var actualMatch = (int)actualMatchKind;

            return(actualMatch <= lowestMatch);
        }