mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-28 04:12:18 +01:00
Add NUnit test project
This commit is contained in:
27
test/WireMock.Net.NUnitTests/UnitTest1.cs
Normal file
27
test/WireMock.Net.NUnitTests/UnitTest1.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user