mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-21 22:04:31 -04:00
f77a2feeef
* Stylecop Rules and Fixes
22 lines
457 B
C#
22 lines
457 B
C#
using FluentAssertions;
|
|
using NUnit.Framework;
|
|
|
|
namespace NzbDrone.Common.Test
|
|
{
|
|
[TestFixture]
|
|
public class HashUtilFixture
|
|
{
|
|
[Test]
|
|
public void should_create_anon_id()
|
|
{
|
|
HashUtil.AnonymousToken().Should().NotBeNullOrEmpty();
|
|
}
|
|
|
|
[Test]
|
|
public void should_create_the_same_id()
|
|
{
|
|
HashUtil.AnonymousToken().Should().Be(HashUtil.AnonymousToken());
|
|
}
|
|
}
|
|
}
|