Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Tests/Blog/PostWriterWebServiceAdapterTests.cs @ 274:72a96459f910
Ticket #123: Patrocinadores de las vans.
author | juanjose.montesdeocaarbos |
---|---|
date | Wed, 30 Nov 2011 08:56:01 -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)); } } }