mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-19 08:37:23 +01:00
23 lines
487 B
C#
23 lines
487 B
C#
using NFluent;
|
|
using WireMock.Matchers;
|
|
using Xunit;
|
|
|
|
namespace WireMock.Net.Tests.Matchers
|
|
{
|
|
public class ExactObjectMatcherTests
|
|
{
|
|
[Fact]
|
|
public void ExactObjectMatcher_GetName()
|
|
{
|
|
// Assign
|
|
object obj = 1;
|
|
|
|
// Act
|
|
var matcher = new ExactObjectMatcher(obj);
|
|
string name = matcher.GetName();
|
|
|
|
// Assert
|
|
Check.That(name).Equals("ExactObjectMatcher");
|
|
}
|
|
}
|
|
} |