Documentation modifications

This commit is contained in:
julian
2026-06-27 15:23:26 -07:00
parent a633fe6c06
commit a19fb90902
218 changed files with 2882 additions and 0 deletions
@@ -9,10 +9,24 @@ using Options = Microsoft.Extensions.Options.Options;
namespace adas_core.Test.Repositories;
/// <summary>
/// Integration test fixture that validates the behavior of the <c>PumpArchiveRepository</c> against its real dependencies rather than mocked collaborators.
/// </summary>
/// <remarks>
/// Categorized as <c>Integration</c> so it can be filtered separately from unit tests during test execution.
/// </remarks>
/// <!-- aidoc:v1 sig=c26548c -->
[TestFixture]
[Category("Integration")]
public class PumpArchiveRepositoryTest
{
/// <summary>
/// Performs one-time initialization for the test fixture by seeding two <see cref="PumpObservation"/>
/// records into the archive collection: one with the current timestamp and another with a timestamp
/// ten days in the past, enabling tests of the <see cref="PumpArchiveRepository"/> archive behavior
/// across different observation times.
/// </summary>
/// <!-- aidoc:v1 sig=81c0015 body=344b169 -->
[OneTimeSetUp]
public async Task Init()
{