view Agendas/trunk/src/Agendas.Tests/Blog/PostWriterWebServiceAdapterTests.cs @ 191:03c237cd5cc4

Test que verifica el acceso por shorten url
author nelopauselli
date Tue, 09 Aug 2011 09:52:02 -0300
parents 734d3f0853bf
children 03cf6a377ee8
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"));
      srv.WriteBlogPost(null, null, null, false);
    }
  }

}