Пример #1
0
        public static EqualsMap matchesExactly <T1>(IDictionary <T1> matchers)
        {
            EqualsMap matcher = new EqualsMap();

            matcher.matchers = matchers;
            return(matcher);
        }
Пример #2
0
        public static EqualsMap containsExactly(IDictionary <string, object> map)
        {
            EqualsMap matcher = new EqualsMap();

            matcher.mapToCompare = map;
            return(matcher);
        }