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
@@ -8,6 +8,13 @@ using Options = Microsoft.Extensions.Options.Options;
namespace adas_core.Test.Repositories;
/// <summary>
/// Integration test fixture that verifies the behavior of the medicine repository.
/// </summary>
/// <remarks>
/// Categorized as <c>Integration</c> to enable selective execution of the contained tests apart from unit-level suites.
/// </remarks>
/// <!-- aidoc:v1 sig=de33005 -->
[TestFixture]
[Category("Integration")]
public class MedicineRepositoryTest
@@ -64,6 +71,10 @@ public class MedicineRepositoryTest
Assert.That(result, Is.Empty);
}
/// <summary>
/// Verifies that <see cref="Repository{T}.GetMedicineByCodeOrNote"/> correctly retrieves a matching <see cref="Medicine"/> when both codes and notes are provided as search criteria, confirming that Paracetamol is returned when its code "605677" appears among the inputs.
/// </summary>
/// <!-- aidoc:v1 sig=e779a42 body=45093b5 -->
[Test]
public async Task Get_Medicines_Of_Treatments_By_Code_When_Have_Code_And_Notes_Return_Paracetamol()
{