=== 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
@@ -21,6 +21,7 @@ public class PoCSettingsRepositoryTest
/// <summary>
/// One-time setup that prepares the integration test environment by resetting the PoC settings collection in the integration database, seeding it with test data, and instantiating the <see cref="PoCSettingsRepository"/> used by the test fixture.
/// </summary>
/// <!-- aidoc:v1 sig=81c0015 body=dcc8a2f -->
[OneTimeSetUp]
public async Task Init()
{
@@ -55,6 +56,7 @@ public class PoCSettingsRepositoryTest
/// <summary>
/// Verifies that calling the Delete method with an existing PoCSettings identifier removes the corresponding record from the repository, resulting in a null lookup via FindById.
/// </summary>
/// <!-- aidoc:v1 sig=fe40c5f body=05bfdc8 -->
[Test]
public async Task Delete_WhenCalled_ShouldRemovePoCSettings()
{
@@ -78,6 +80,7 @@ public class PoCSettingsRepositoryTest
/// <summary>
/// Verifies that the repository's <c>FindAll</c> method returns a non-null and non-empty collection of PoC settings.
/// </summary>
/// <!-- aidoc:v1 sig=7098a75 body=efda3dd -->
[Test]
public async Task FindAll_WhenCalled_ShouldReturnAllPoCSettings()
{
@@ -92,6 +95,7 @@ public class PoCSettingsRepositoryTest
/// <summary>
/// Tests that FindById returns a non-null PoC settings object whose identifier matches the requested value.
/// </summary>
/// <!-- aidoc:v1 sig=d657f65 body=3e8fc10 -->
[Test]
public async Task FindById_WhenCalled_ShouldReturnPoCSettings()
{
@@ -106,6 +110,7 @@ public class PoCSettingsRepositoryTest
/// <summary>
/// Verifies that _repository.FindByLocation returns a PoC settings object matching the requested patient location.
/// </summary>
/// <!-- aidoc:v1 sig=ad74af5 body=0b6fc4b -->
[Test]
public async Task FindByLocation_WhenCalled_ShouldReturnPoCSettings()
{
@@ -121,6 +126,7 @@ public class PoCSettingsRepositoryTest
/// Verifies that the repository correctly updates an existing PoCSettings entity, specifically ensuring that the associated PatientLocation properties (such as Bed) are persisted after the update operation.
/// </summary>
/// <returns>A task that represents the asynchronous test execution.</returns>
/// <!-- aidoc:v1 sig=767a442 body=1a3df29 -->
[Test]
public async Task Update_WhenCalled_ShouldUpdatePoCSettings()
{