Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Tests/Blog/PostWriterWebServiceAdapterTests.cs @ 295:8c742d5ccf67
Leyendo imagen directamente desde el stream
author | nelopauselli |
---|---|
date | Sat, 18 Feb 2012 12:33:54 -0300 |
parents | 03cf6a377ee8 |
children |
line wrap: on
line source
using System.ServiceModel; using Agendas.Blog.Impl; using NUnit.Framework; namespace AltNetHispano.Agendas.Tests.Blog { [TestFixture] public class PostWriterWebServiceAdapterTests { [Test] //[ExpectedException(typeof(EndpointNotFoundException))] public void Si_la_url_es_invalida_debe_lanzar_excepcion() { var srv = new PostWriterWebServiceAdapter(new BlogPublicadorConfig("http://dummy/dummy.aspx", "dummy", "dummy")); Assert.Throws<EndpointNotFoundException>(()=>srv.WriteBlogPost(null, null, null, false)); } } }