public void CreateAzureQueueWithInvalidNameTest()
        {
            string name = String.Empty;

            AssertThrows <ArgumentException>(() => command.CreateAzureQueue(name),
                                             String.Format(Resources.InvalidQueueName, name));

            name = "a";
            AssertThrows <ArgumentException>(() => command.CreateAzureQueue(name),
                                             String.Format(Resources.InvalidQueueName, name));

            name = "&*(";
            AssertThrows <ArgumentException>(() => command.CreateAzureQueue(name),
                                             String.Format(Resources.InvalidQueueName, name));
        }