mirror of
https://github.com/bitwarden/server
synced 2025-12-06 00:03:34 +00:00
* Initial v3 Migration * Migrate tests and debug duplicate ids * Debug duplicate ids * Support seeding * remove seeder * Upgrade to latest XUnit.v3 version * Remove Theory changes for now * Remove Theory change from DeviceRepositoryTests * Remove cancellation token additions
18 lines
480 B
C#
18 lines
480 B
C#
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)
|
|
{
|
|
}
|
|
}
|