Template
chore: deploy initial code base
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
using Strata.DecisionSupport.Biz.Services;
|
||||
using System.Threading.Tasks;
|
||||
using VerifyNUnit;
|
||||
using VerifyTests;
|
||||
|
||||
namespace Strata.DecisionSupport.Biz.Test.Unit.Services
|
||||
{
|
||||
[TestFixture, Category("Unit"), Category("DSS")]
|
||||
public class AllChargeInfoQueryTests //: EncounterQueryServiceTests
|
||||
{
|
||||
private VerifySettings _verifySettings;
|
||||
|
||||
[SetUp]
|
||||
public void TestSetUp()
|
||||
{
|
||||
_verifySettings = TestExtensions.TestSettings();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public async Task AllChargeInfoQueryTest()
|
||||
{
|
||||
var query = EncounterQueries.AllChargeInfoQuery();
|
||||
await Verifier.Verify(query, _verifySettings)
|
||||
.UseFileName(TestContext.CurrentContext.TestName());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user