Skip to content

Instantly share code, notes, and snippets.

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 es-repo/8d92829579175308b63e9238bc8d1eaf to your computer and use it in GitHub Desktop.
Save es-repo/8d92829579175308b63e9238bc8d1eaf to your computer and use it in GitHub Desktop.
better-unit-test-in-c#-article-IBox-and-WriteLog.cs
public interface IBox
{
int Size { get; }
void Open();
void Close();
bool PutInside(Thing thing, string label);
}
public delegate void WriteLog(string message);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment