public void UpdateVideoCreative()
        {
            VideoAdCreative creative = VideoAdCreative.Create(13337UL, 15135UL, 28157UL, 100UL, new AdAction(0U));

            creative.Name                 = "update12";
            creative.Action.Id            = 2;
            creative.Status               = AdStatus.Launching;
            creative.VideoPreviewImageUrl = "http://172.16.18.6/conversion/15135/c7751dd234cd4414b8e9dc704c4e2cc7.png";
            creative.VideoUrl             = "http://172.16.18.6/conversion/15135/201306030429304055.mp4";
            creative.DestinationUrl       = creative.VideoUrl;
            creative.Size.ImageSizeId     = 109;

            _adVideoCreativeData = ConverterFactory.GetAdVideoCreativeConverter().ConvertToNetworkObject(creative);

            UpdateAdVideoCreativeByIdProcessor processor   = new UpdateAdVideoCreativeByIdProcessor();
            FakedBusinessTransaction           transaction = new FakedBusinessTransaction();

            transaction.Request = new UpdateAdVideoCreativeByIdRequestMessage {
                UserId = 8973, AccountId = 5658, Data = _adVideoCreativeData
            };
            processor.Process(transaction);

            UpdateAdVideoCreativeByIdResponseMessage rspMsg = (UpdateAdVideoCreativeByIdResponseMessage)transaction.Response;
        }