public void GetBlobContentByNameWithInvalidNameTest()
        {
            string containerName = string.Empty;
            string blobName      = string.Empty;
            string fileName      = string.Empty;

            AssertThrows <ArgumentException>(() => command.GetBlobContent(containerName, blobName, fileName),
                                             String.Format(Resources.InvalidBlobName, blobName));

            containerName = "ab";
            blobName      = "blob0";
            fileName      = "blob*";
            AssertThrows <ArgumentException>(() => command.GetBlobContent(containerName, blobName, fileName),
                                             String.Format(Resources.InvalidContainerName, containerName));
        }