mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
19 lines
433 B
C#
19 lines
433 B
C#
using FluentAssertions;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Core.Update.Commands;
|
|
|
|
namespace NzbDrone.Core.Test.Messaging.Commands
|
|
{
|
|
[TestFixture]
|
|
public class CommandFixture
|
|
{
|
|
[Test]
|
|
public void default_values()
|
|
{
|
|
var command = new ApplicationUpdateCommand();
|
|
|
|
command.Id.Should().NotBe(0);
|
|
command.Name.Should().Be("ApplicationUpdate");
|
|
}
|
|
}
|
|
} |