11 lines
221 B
C#
11 lines
221 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace API.Tests.Services;
|
|
|
|
public class CoverDbServiceTests : AbstractDbTest
|
|
{
|
|
protected override Task ResetDb()
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|