=== 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
@@ -31,6 +31,7 @@ public class RecordingServiceTest
/// dependencies (logger, HTTP client factory, publisher, authentication, client message, subscribers, and patient services),
/// and configuring the publisher mock to successfully send both regular messages and errors.
/// </summary>
/// <!-- aidoc:v1 sig=dee8bf2 body=858be2c -->
[SetUp]
public void Setup()
{
@@ -108,6 +109,7 @@ public class RecordingServiceTest
/// <summary>
/// Verifies that <see cref="RecordingService.GetRecordings"/> returns an empty collection of <see cref="RecordingData"/> when the HTTP response indicates an unauthorized (401) status, ensuring the service correctly handles failed authentication scenarios by yielding no recordings rather than throwing or returning null.
/// </summary>
/// <!-- aidoc:v1 sig=2d4a973 body=2d5face -->
[Test]
public async Task GetRecordings_Return_Empty()
{
@@ -138,6 +140,7 @@ public class RecordingServiceTest
/// when the HTTP endpoint responds with a successful payload containing a recording and its associated patient.
/// Asserts that the returned items match the source data for status, room identifier, and patient identity fields.
/// </summary>
/// <!-- aidoc:v1 sig=a268bca body=27cf99d -->
[Test]
public async Task GetRecordings_Return_RecordingData()
{
@@ -187,6 +190,7 @@ public class RecordingServiceTest
/// <summary>
/// Tests that calling <c>SaveRequest</c> on the recording service throws a <see cref="NotImplementedException"/> when supplied with an <see cref="ApiRequest"/>, using a mocked HTTP message handler that returns a successful response.
/// </summary>
/// <!-- aidoc:v1 sig=e3a0b21 body=247c17b -->
[Test]
public Task SaveRequest()
{