public static EqualsMap matchesExactly <T1>(IDictionary <T1> matchers) { EqualsMap matcher = new EqualsMap(); matcher.matchers = matchers; return(matcher); }
public static EqualsMap containsExactly(IDictionary <string, object> map) { EqualsMap matcher = new EqualsMap(); matcher.mapToCompare = map; return(matcher); }