=== 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
@@ -25,6 +25,7 @@ public class MasterListServiceTest
/// for use in unit tests. Configures the HTTP context with a test user principal, registers the master list repository
/// in the service provider, and supplies default API settings.
/// </summary>
/// <!-- aidoc:v1 sig=dee8bf2 body=b470369 -->
[SetUp]
public void Setup()
{
@@ -95,6 +96,7 @@ public class MasterListServiceTest
/// <summary>
/// Verifies that <c>DeleteMasterListById</c> invokes the repository's <c>Delete</c> method once with the provided identifier when the master list is found.
/// </summary>
/// <!-- aidoc:v1 sig=ea99ebf body=df3195e -->
[Test]
public async Task DeleteMasterListById_ShouldCallRepositoryDelete_WhenMasterListFound()
{
@@ -132,6 +134,7 @@ public class MasterListServiceTest
/// <summary>
/// Verifies that the service returns the master list when it is found by the specified id.
/// </summary>
/// <!-- aidoc:v1 sig=ccec55b body=8cfdb62 -->
[Test]
public async Task GetMasterListById_ShouldReturnMasterList_WhenFound()
{
@@ -151,6 +154,7 @@ public class MasterListServiceTest
/// <summary>
/// Verifies that <c>GetMasterListByName</c> returns the matching <see cref="MasterList"/> when a master list with the specified name is found in the repository.
/// </summary>
/// <!-- aidoc:v1 sig=e75f465 body=49f48d4 -->
[Test]
public async Task GetMasterListByName_ShouldReturnMasterList_WhenFound()
{
@@ -170,6 +174,7 @@ public class MasterListServiceTest
/// <summary>
/// Verifies that the InsertMasterList service method returns the same <see cref="MasterList"/> instance that was inserted, ensuring the service correctly retrieves the inserted entity by its identifier after persistence.
/// </summary>
/// <!-- aidoc:v1 sig=d6a0851 body=1cc5b44 -->
[Test]
public async Task InsertMasterList_ShouldReturnInsertedMasterList()
{
@@ -191,6 +196,7 @@ public class MasterListServiceTest
/// Verifies that UpdateMasterList returns the updated master list when the repository successfully completes the update and finds the entity by id.
/// </summary>
/// <returns>A <see cref="Task"/> representing the asynchronous test execution.</returns>
/// <!-- aidoc:v1 sig=870cac2 body=e6d0735 -->
[Test]
public async Task UpdateMasterList_ShouldReturnUpdatedMasterList()
{