=== 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
@@ -15,6 +15,7 @@ public class NoCacheServiceTest
/// Initializes a fresh <see cref="NoCacheService"/> instance and assigns it to <c>_noCacheService</c>
/// to provide a clean, dependency-free test fixture prior to executing each test.
/// </summary>
/// <!-- aidoc:v1 sig=d8eb19f body=f419747 -->
[SetUp]
public void SetUp()
{
@@ -87,6 +88,7 @@ public class NoCacheServiceTest
/// <summary>
/// Verifies that the no-cache service implementation never persists data to any backend when <c>GetOrSetObjectAsync</c> is invoked, and confirms that a subsequent <c>DeleteObjectAsync</c> on the same key does not throw.
/// </summary>
/// <!-- aidoc:v1 sig=9b41a17 body=279c122 -->
[Test]
public async Task GetOrSetObjectAsync_DoesNotStoreData_InAnyBackend()
{
@@ -114,6 +116,7 @@ public class NoCacheServiceTest
/// <summary>
/// Verifies that the no-cache service's <c>DeleteByPatternAsync</c> returns 0 and does not throw when invoked with arbitrary patterns, confirming the no-op delete behavior for any key pattern.
/// </summary>
/// <!-- aidoc:v1 sig=d8ac365 body=97d47fa -->
[Test]
public async Task DeleteByPatternAsync_ReturnsZero_DoesNotThrow()
{
@@ -134,6 +137,7 @@ public class NoCacheServiceTest
/// Verifies that calling CleanCache on the no-cache service is a safe no-op that does not throw,
/// and that subsequent calls to GetValue consistently return <c>null</c> for any key.
/// </summary>
/// <!-- aidoc:v1 sig=732eb50 body=c99cdf2 -->
[Test]
public void CleanCache_IsNoOp_DoesNotThrow()
{
@@ -149,6 +153,7 @@ public class NoCacheServiceTest
/// <summary>
/// Verifies that calling <c>SetValue</c> on the no-cache service is a no-op and does not throw any exception.
/// </summary>
/// <!-- aidoc:v1 sig=93ab163 body=4352e8e -->
[Test]
public void SetValue_IsNoOp_DoesNotThrow()
{
@@ -163,6 +168,7 @@ public class NoCacheServiceTest
/// Verifies that the no-cache service's GetValue method returns null for any key,
/// confirming that the no-op implementation does not return or simulate cached values.
/// </summary>
/// <!-- aidoc:v1 sig=11d9010 body=0d07264 -->
[Test]
public void GetValue_IsNoOp_ReturnsNull()
{