=== Summary: 675 files | 7 generated | 484 fresh | 4605 untracked | 4268 adopted | 355 marked | 466 validated-ok | 2+0 stale (sig+body) | 0 skipped | 0 failed | elapsed 11:08:11.442 (40091.44s) ===

This commit is contained in:
julian
2026-06-28 02:50:05 -07:00
parent a19fb90902
commit 586f02a2ca
654 changed files with 5260 additions and 0 deletions
@@ -23,6 +23,7 @@ public class PatientArchiveRepositoryTest
/// Performs one-time setup for integration tests by seeding the patient archive collection
/// with three predefined <see cref="Patient"/> records after resetting the collection.
/// </summary>
/// <!-- aidoc:v1 sig=81c0015 body=325d090 -->
[OneTimeSetUp]
public async Task Init()
{
@@ -92,6 +93,7 @@ public class PatientArchiveRepositoryTest
/// <summary>
/// Verifies that the FindByPatientNumber repository method returns null when no record is found for the provided patient number.
/// </summary>
/// <!-- aidoc:v1 sig=34ec3bc body=1ed0bbb -->
[Test]
public async Task FindByPatientNumber_Not_Find_Return_null()
{
@@ -105,6 +107,7 @@ public class PatientArchiveRepositoryTest
/// matching the provided patient number, ensuring the returned patient is not null and has
/// the expected PatientNumber.
/// </summary>
/// <!-- aidoc:v1 sig=c0d3b04 body=73af217 -->
[Test]
public async Task FindByPatientNumber_Find_Return_Patient()
{
@@ -117,6 +120,7 @@ public class PatientArchiveRepositoryTest
/// <summary>
/// Verifies that the repository's <c>FindAll</c> method returns a non-null list containing the expected number of patient records.
/// </summary>
/// <!-- aidoc:v1 sig=d5ae514 body=7b8d43f -->
[Test]
public async Task FindAll_Return_List_Patients()
{