Mercurial > silverbladetech
view Library/LibrarySystem.Tests/Core/StockTests.cs @ 70:39ba36cc82c5
not sure about these...
author | Steven Hollidge <stevenhollidge@hotmail.com> |
---|---|
date | Mon, 23 Apr 2012 11:06:29 +0100 |
parents | aef06698d9e2 |
children |
line wrap: on
line source
using System; using LibrarySystem.Core; using NUnit.Framework; namespace LibrarySystem.Tests.Core { [TestFixture] class StockTests { [Test] public void Create_WithValidName_ShouldReturnPublisher() { var publisher = Publisher.Create("dummy"); var publication = Publication.Create("dummy","dummy", publisher, "dummy"); var book = Book.Create("dummy", publication); var stock = Stock.Create(book, true); Assert.IsNotNull(stock); } [Test] public void Create_WithNullBook_ShouldThrowAgrumentNullException() { Assert.Throws<ArgumentNullException>(() => Stock.Create(null, true)); } } }