=== 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
@@ -27,6 +27,7 @@ public class ConfigObservationRepositoryTest
/// system references, original name mappings, and observations with min/max alert thresholds
/// and forced alert behavior.
/// </summary>
/// <!-- aidoc:v1 sig=81c0015 body=14402f7 -->
[OneTimeSetUp]
public async Task Init()
{
@@ -123,6 +124,7 @@ public class ConfigObservationRepositoryTest
/// <summary>
/// Verifies that the repository's FindById method returns a non-null configuration result when queried with a valid id.
/// </summary>
/// <!-- aidoc:v1 sig=90db18c body=1df1e1d -->
[Test]
public async Task FindById_Find_Id_Return_Configs()
{
@@ -134,6 +136,7 @@ public class ConfigObservationRepositoryTest
/// <summary>
/// Verifies that the <c>FindById</c> repository method returns <c>null</c> when invoked with a newly generated, non-existing identifier.
/// </summary>
/// <!-- aidoc:v1 sig=ec16c67 body=c6d06bf -->
[Test]
public async Task FindById_Not_Find_Id_Return_Empty()
{
@@ -145,6 +148,7 @@ public class ConfigObservationRepositoryTest
/// <summary>
/// Verifies that an existing <see cref="ConfigObservation"/> can be retrieved by its identifier and subsequently updated, ensuring the updated entity reflects the new values.
/// </summary>
/// <!-- aidoc:v1 sig=920dd57 body=d0216be -->
[Test]
public async Task Update_Find_Id_Return_Update_Configs()
{
@@ -170,6 +174,7 @@ public class ConfigObservationRepositoryTest
/// <summary>
/// Verifies that the repository's Update operation creates a new record when the provided identifier does not exist in the data store, instead of failing.
/// </summary>
/// <!-- aidoc:v1 sig=26cbb5c body=e514eb3 -->
[Test]
public async Task Update_Not_Find_Id_Create_It()
{
@@ -192,6 +197,7 @@ public class ConfigObservationRepositoryTest
/// Verifies that the base delete operation removes a <see cref="ConfigObservation"/> from the repository.
/// The test confirms the entity is absent before insertion, present after insertion, and absent again after deletion.
/// </summary>
/// <!-- aidoc:v1 sig=59f0dda body=38d51c3 -->
[Test]
public async Task Delete_With_Base_DeleteAsync()
{