You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
439 B
13 lines
439 B
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace Recyclarr.TestLibrary.AutoFixture;
|
|
|
|
[method: SuppressMessage(
|
|
"Design",
|
|
"CA1019",
|
|
MessageId = "Define accessors for attribute arguments",
|
|
Justification = "The parameter is forwarded to the base class and not used directly"
|
|
)]
|
|
public sealed class InlineAutoMockDataAttribute(params object?[] parameters)
|
|
: InlineAutoDataAttribute(NSubstituteFixture.Create, parameters);
|