Skip to content

Instantly share code, notes, and snippets.

@mcsee
Last active August 28, 2023 00:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcsee/e805e3d4540de21d6c1c3ff0341aac5a to your computer and use it in GitHub Desktop.
Save mcsee/e805e3d4540de21d6c1c3ff0341aac5a to your computer and use it in GitHub Desktop.
public class MyCollection {
public bool HasNext { get; set;} // implementation details
public object Next(); // implementation details
}
public class MyDomainObject sum(MyCollection anObjectThatCanBeIterated) {
// Tight coupling
}
// You cannot fake or mock this method
// since it always expects an instance of MyCollection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment