Include some unit tests for the new K+ Completed check

This commit is contained in:
Amelia 2025-06-23 22:30:24 +02:00
parent b40b25a4e7
commit c1471db264
3 changed files with 193 additions and 3 deletions

View file

@ -115,4 +115,16 @@ public class SeriesMetadataBuilder : IEntityBuilder<SeriesMetadata>
_seriesMetadata.TagsLocked = lockStatus;
return this;
}
public SeriesMetadataBuilder WithMaxCount(int count)
{
_seriesMetadata.MaxCount = count;
return this;
}
public SeriesMetadataBuilder WithTotalCount(int count)
{
_seriesMetadata.TotalCount = count;
return this;
}
}