Documentation modifications
This commit is contained in:
@@ -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()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user