Microsoft.WindowsAzure.MediaServices.Client.Tests.AssetTests.ShouldThrowCreatingAssetFileWithMissingFile C# (CSharp) Method

ShouldThrowCreatingAssetFileWithMissingFile() private method

private ShouldThrowCreatingAssetFileWithMissingFile ( ) : void
return void
        public void ShouldThrowCreatingAssetFileWithMissingFile()
        {
            try
            {
                CreateAsset(_mediaContext, WindowsAzureMediaServicesTestConfiguration.BadSmallWmv, AssetCreationOptions.StorageEncrypted);
            }
            catch (AggregateException exception)
            {
                throw exception.InnerException;
            }
        }
AssetTests