AppHarbor.Tests.Commands.HostnameCommandTest.ShouldWriteIfNoHostnamesAreAssociated C# (CSharp) Method

ShouldWriteIfNoHostnamesAreAssociated() private method

private ShouldWriteIfNoHostnamesAreAssociated ( HostnameCommand command, [ writer, string applicationId ) : void
command AppHarbor.Commands.HostnameCommand
writer [
applicationId string
return void
        public void ShouldWriteIfNoHostnamesAreAssociated(HostnameCommand command,
			[Frozen]Mock<TextWriter> writer, string applicationId)
        {
            command.Execute(new string[0]);

            writer.Verify(x => x.WriteLine("No hostnames are associated with the application."));
        }