Include some unit tests for the new K+ Completed check
This commit is contained in:
parent
b40b25a4e7
commit
c1471db264
3 changed files with 193 additions and 3 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue