Mercurial > silverbladetech
view Library/LibrarySystem.Tests/Core/StockTests.cs @ 121:8f94475d3146 tip
final code
author | stevenh7776 |
---|---|
date | Thu, 31 May 2012 15:35:26 +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)); } } }