Skip to content

Instantly share code, notes, and snippets.

View djhmateer's full-sized avatar

Dave Mateer djhmateer

View GitHub Profile
@djhmateer
djhmateer / tests.cs
Created January 25, 2016 22:06
some tests
[Fact]
public void OneToFive()
{
var result = DivideUp(7);
// if 1,2,3,4,5
Assert.Equal(new List<int> { 1, 5, 3, 4, 2 }, result);
}
[Fact]
public void OneToSeven()