mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-10 17:14:14 -04:00
* Have actionables on series detail action bar and in title to make it easier to use. * Fixed a bug where super long titles could render over the book content * Fixed a bug in get continue point where it wasn't working in an edge case
18 lines
476 B
C#
18 lines
476 B
C#
using System.Linq;
|
|
using API.Comparators;
|
|
using Xunit;
|
|
|
|
namespace API.Tests.Comparers;
|
|
|
|
public class SortComparerZeroLastTests
|
|
{
|
|
[Theory]
|
|
[InlineData(new[] {0, 1, 2,}, new[] {1, 2, 0})]
|
|
[InlineData(new[] {3, 1, 2}, new[] {1, 2, 3})]
|
|
[InlineData(new[] {0, 0, 1}, new[] {1, 0, 0})]
|
|
public void SortComparerZeroLastTest(int[] input, int[] expected)
|
|
{
|
|
Assert.Equal(expected, input.OrderBy(f => f, new SortComparerZeroLast()).ToArray());
|
|
}
|
|
}
|