Skip to content

Instantly share code, notes, and snippets.

@JayBazuzi
Created December 6, 2015 20:18
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 JayBazuzi/6581d5b326653cdd8b52 to your computer and use it in GitHub Desktop.
Save JayBazuzi/6581d5b326653cdd8b52 to your computer and use it in GitHub Desktop.
// Tests for A
result = new A(fakeB).F();
// Tests for B
result = new B().G();
// Tests that they work together
subject = new A(new B());
result = subject.F();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment