24 lines
404 B
C#
24 lines
404 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Flurl.Http.Testing;
|
|
using NUnit.Framework;
|
|
|
|
namespace Flurl.Test.Http
|
|
{
|
|
public abstract class HttpTestFixtureBase
|
|
{
|
|
protected HttpTest HttpTest { get; private set; }
|
|
|
|
[SetUp]
|
|
public void CreateHttpTest() {
|
|
HttpTest = new HttpTest();
|
|
}
|
|
|
|
[TearDown]
|
|
public void DisposeHttpTest() {
|
|
HttpTest.Dispose();
|
|
}
|
|
}
|
|
}
|