Files
server/test/Infrastructure.IntegrationTest/DatabaseTheoryAttribute.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
480 B
C#
Raw Permalink Normal View History

using System.Runtime.CompilerServices;
using Xunit;
namespace Bit.Infrastructure.IntegrationTest;
[Obsolete("This attribute is no longer needed and can be replaced with a [Theory]")]
public class DatabaseTheoryAttribute : TheoryAttribute
{
public DatabaseTheoryAttribute()
{
}
public DatabaseTheoryAttribute([CallerFilePath] string? sourceFilePath = null, [CallerLineNumber] int sourceLineNumber = -1) : base(sourceFilePath, sourceLineNumber)
{
}
}