mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-04-29 04:07:26 +02:00
* Add TIOBE + include SonarAnalyzer.CSharp * . * cp * Copyright © WireMock.Net * more fixes * fix * xpath * if (Matchers == null || !Matchers.Any()) * if (Matchers != null) * ? * . * .
13 lines
347 B
C#
13 lines
347 B
C#
// Copyright © WireMock.Net
|
|
|
|
namespace WireMock.Org.Abstractions;
|
|
|
|
/// <summary>
|
|
/// The fault to apply (instead of a full, valid response).
|
|
/// </summary>
|
|
public static class MappingsResponseFaultConstants
|
|
{
|
|
public const string EMPTYRESPONSE = "EMPTY_RESPONSE";
|
|
|
|
public const string MALFORMEDRESPONSECHUNK = "MALFORMED_RESPONSE_CHUNK";
|
|
} |