2025-08-25 02:43:24 -04:00
|
|
|
|
using System.Runtime.CompilerServices;
|
2022-12-02 14:24:30 -05:00
|
|
|
|
using Xunit;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Bit.Infrastructure.IntegrationTest;
|
|
|
|
|
|
|
2025-08-25 02:43:24 -04:00
|
|
|
|
[Obsolete("This attribute is no longer needed and can be replaced with a [Theory]")]
|
2022-12-02 14:24:30 -05:00
|
|
|
|
public class DatabaseTheoryAttribute : TheoryAttribute
|
|
|
|
|
|
{
|
|
|
|
|
|
public DatabaseTheoryAttribute()
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-25 02:43:24 -04:00
|
|
|
|
public DatabaseTheoryAttribute([CallerFilePath] string? sourceFilePath = null, [CallerLineNumber] int sourceLineNumber = -1) : base(sourceFilePath, sourceLineNumber)
|
2022-12-02 14:24:30 -05:00
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|