mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-20 04:18:51 -07:00
23 lines
543 B
C#
23 lines
543 B
C#
using System;
|
|
using MediaBrowser.Common.Extensions;
|
|
using Xunit;
|
|
|
|
namespace Jellyfin.Common.Tests.Extensions
|
|
{
|
|
public static class ShuffleExtensionsTests
|
|
{
|
|
private static readonly Random _rng = new Random();
|
|
|
|
[Fact]
|
|
public static void Shuffle_Valid_Correct()
|
|
{
|
|
byte[] original = new byte[1 << 6];
|
|
_rng.NextBytes(original);
|
|
byte[] shuffled = (byte[])original.Clone();
|
|
shuffled.Shuffle();
|
|
|
|
Assert.NotEqual(original, shuffled);
|
|
}
|
|
}
|
|
}
|