mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
32 lines
856 B
C#
32 lines
856 B
C#
|
using System;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Linq.Expressions;
|
|||
|
using FluentAssertions;
|
|||
|
using NUnit.Framework;
|
|||
|
using NzbDrone.Core.Datastore;
|
|||
|
using NzbDrone.Core.Tv;
|
|||
|
|
|||
|
namespace NzbDrone.Core.Test.Datastore.PagingSpecExtenstionsTests
|
|||
|
{
|
|||
|
public class PagingOffsetFixture
|
|||
|
{
|
|||
|
[TestCase(1, 10, 0)]
|
|||
|
[TestCase(2, 10, 10)]
|
|||
|
[TestCase(3, 20, 40)]
|
|||
|
[TestCase(1, 100, 0)]
|
|||
|
public void should_calcuate_expected_offset(int page, int pageSize, int expected)
|
|||
|
{
|
|||
|
var pagingSpec = new PagingSpec<Episode>
|
|||
|
{
|
|||
|
Page = page,
|
|||
|
PageSize = pageSize,
|
|||
|
SortDirection = SortDirection.Ascending,
|
|||
|
SortKey = "AirDate"
|
|||
|
};
|
|||
|
|
|||
|
pagingSpec.PagingOffset().Should().Be(expected);
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|