Fixed Dispose on AbstractDbTest.cs and cleaned up some warnings on unit tests.

This commit is contained in:
Joseph Milazzo 2025-05-03 07:29:09 -05:00
parent 32c035b5c8
commit adf7882038
17 changed files with 1369 additions and 1384 deletions

View file

@ -0,0 +1,11 @@
using System.Threading.Tasks;
namespace API.Tests.Services;
public class CoverDbServiceTests : AbstractDbTest
{
protected override Task ResetDb()
{
throw new System.NotImplementedException();
}
}