Mercurial > silverbladetech
view Library/LibrarySystem.Tests/Core/PersonTests.cs @ 111:6cb8cd05ad6b
Remove automated tests
author | stevenhollidge <stevenhollidge@hotmail.com> |
---|---|
date | Sun, 06 May 2012 21:51:38 +0100 |
parents | aef06698d9e2 |
children |
line wrap: on
line source
using System; using LibrarySystem.Core; using NUnit.Framework; namespace LibrarySystem.Tests.Core { [TestFixture] class PersonTests { [Test] public void Create_WithValidParams_ShouldReturnPerson() { var person = Person.Create("dummy", "dummy"); Assert.IsNotNull(person); } [Test] public void Create_WithNullAddress_ShouldThrowAgrumentNullException() { Assert.Throws<ArgumentNullException>(() => Person.Create(null, "dummy")); } [Test] public void Create_WithNullName_ShouldThrowAgrumentNullException() { Assert.Throws<ArgumentNullException>(() => Person.Create("dummy", null)); } [Test] public void Create_WithNullAddressAndName_ShouldThrowAgrumentNullException() { Assert.Throws<ArgumentNullException>(() => Person.Create(null, null)); } } }