21 lines
456 B
C#
21 lines
456 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());
|
|||
|
}
|
|||
|
}
|
|||
|
}
|