removed unused class

This commit is contained in:
tmenier 2014-05-04 12:37:00 -05:00
parent 5246e7b1b8
commit a3071fb441
2 changed files with 0 additions and 22 deletions

View File

@ -79,7 +79,6 @@
<Compile Include="Http\DownloadTests.cs" />
<Compile Include="Http\GetTests.cs" />
<Compile Include="Http\GlobalConfigTests.cs" />
<Compile Include="Http\HttpAssert.cs" />
<Compile Include="Http\PostTests.cs" />
<Compile Include="Http\TestingTests.cs" />
<Compile Include="Http\FlurlClientTests.cs" />

View File

@ -1,21 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
using Flurl.Http;
using NUnit.Framework;
namespace Flurl.Test.Http
{
public static class HttpAssert
{
//public static void Las tRequest(HttpMethod method, string mediaType, string body) {
// var call = FlurlHttp.Testing.CallLog.Last();
// Assert.AreEqual(method, call.Request.Method);
// Assert.AreEqual(mediaType, call.Request.Content == null ? null : call.Request.Content.Headers.ContentType.MediaType);
// Assert.AreEqual(body, call.RequestBody);
//}
}
}