mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-11 22:30:41 +01:00
27 lines
372 B
C#
27 lines
372 B
C#
using WireMock.Server;
|
|
|
|
namespace WireMock.Net.NUnitTests;
|
|
|
|
[TestFixture]
|
|
public class Test
|
|
{
|
|
private WireMockServer server;
|
|
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
server = WireMockServer.Start();
|
|
}
|
|
|
|
[Test]
|
|
public void SomeTest()
|
|
{
|
|
Assert.Pass();
|
|
}
|
|
|
|
[TearDown]
|
|
public void TearDown()
|
|
{
|
|
server.Stop();
|
|
}
|
|
} |