view Library/LibrarySystem.Tests/Core/BookTests.cs @ 103:8cb4f36717e9

Fake it easy dll added
author stevenhollidge <stevenhollidge@hotmail.com>
date Sun, 06 May 2012 12:14:53 +0100
parents aef06698d9e2
children
line wrap: on
line source

using System;
using LibrarySystem.Core;
using LibrarySystem.Interfaces;
using NUnit.Framework;

namespace LibrarySystem.Tests.Core
{
    [TestFixture]
    class BookTests
    {
        [Test]
        public void Create_WithNullIdAndNullPublication_ShouldThrowArgumentNullException()
        {
            Assert.Throws<ArgumentNullException>(() => Book.Create(null, null));
        }

        [Test]
        public void Create_WithNullIdAndValidPublication_ShouldThrowArgumentNullException()
        {
            var publisher = Publisher.Create("dummy");
            var publication = Publication.Create("dummy", "dummy", publisher, "dummy");
            Assert.Throws<ArgumentNullException>(() => Book.Create(null, publication));
        }

        [Test]
        public void Create_WithNullPublication_ShouldThrowArgumentNullException()
        {
            var validId = "1";
            Assert.Throws<ArgumentNullException>(() => Book.Create(validId, null));
        }

        [Test]
        public void Create_WithValidParametersPublication_ShouldReturnBook()
        {
            var publisher = Publisher.Create("dummy");
            var publication = Publication.Create("dummy","dummy", publisher, "dummy");
            var validId = "1";
            IBook book = Book.Create(validId, publication);
            Assert.NotNull(book);
        }
    }
}