1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-12 08:38:13 -05:00
bitwarden/test/Infrastructure.IntegrationTest/DatabaseTheoryAttribute.cs

14 lines
293 B
C#

using Microsoft.Extensions.Configuration;
using Xunit;
namespace Bit.Infrastructure.IntegrationTest;
[Obsolete("[DatabaseTheory] is no longer needed, you can just use [Theory]")]
public class DatabaseTheoryAttribute : TheoryAttribute
{
public DatabaseTheoryAttribute()
{
}
}