Skip to content

Instantly share code, notes, and snippets.

@default-kramer
Created April 25, 2014 15:37
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 default-kramer/11293830 to your computer and use it in GitHub Desktop.
Save default-kramer/11293830 to your computer and use it in GitHub Desktop.
// the code under test fills these buckets
private int?[] buckets;
[TestMethod]
public void verbose_test()
{
doTheTest();
Assert.IsNull(buckets[0]);
Assert.IsNull(buckets[1]);
Assert.AreEqual(4, buckets[2]);
Assert.IsNull(buckets[3]);
// ...
// ...
// ...
Assert.AreEqual(10, buckets[11]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment