Skip to content

Commit

Permalink
Small cleanup to a test
Browse files Browse the repository at this point in the history
  • Loading branch information
neilcampbell committed Jan 10, 2016
1 parent 26460e3 commit f27377e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions Samples/EventApi/Provider.Api.Web.Tests/EventAPITests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,6 @@

namespace Provider.Api.Web.Tests
{
public class CustomOutputter : IReportOutputter
{
public string Output { get; set; }

public void Write(string report)
{
Output += report;
}
}

public class EventApiTests
{
[Fact]
Expand Down Expand Up @@ -63,5 +53,15 @@ private void InsertEventIntoDatabase()
{
//Logic to do database inserts for event with id 83F9262F-28F1-4703-AB1A-8CFD9E8249C9
}

private class CustomOutputter : IReportOutputter
{
public string Output { get; private set; }

public void Write(string report)
{
Output += report;
}
}
}
}

0 comments on commit f27377e

Please sign in to comment.