2013-09-11 06:33:47 +00:00
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using NzbDrone.Core.Update.Commands;
|
|
|
|
|
|
2013-09-14 23:34:21 +00:00
|
|
|
|
namespace NzbDrone.Core.Test.Messaging.Commands
|
2013-09-11 06:33:47 +00:00
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2013-09-14 23:34:21 +00:00
|
|
|
|
public class CommandFixture
|
2013-09-11 06:33:47 +00:00
|
|
|
|
{
|
|
|
|
|
[Test]
|
|
|
|
|
public void default_values()
|
|
|
|
|
{
|
|
|
|
|
var command = new ApplicationUpdateCommand();
|
|
|
|
|
|
|
|
|
|
command.Id.Should().NotBe(0);
|
|
|
|
|
command.Name.Should().Be("ApplicationUpdate");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|