Example #1
0
 public void BookHasNecessaryProperties()
 {
     var book = new DevDo.BookClub.Models.Book {
         Title = "The Pragmatic Programmer",
         Author = "Andy Hunt",
         ISBN = "020161622X",
         CoverUrl = "https://images-na.ssl-images-amazon.com/images/I/41BKx1AxQWL._SX258_BO1,204,203,200_.jpg"
     };
 }
Example #2
0
 public void CanConstructBook()
 {
     var book = new DevDo.BookClub.Models.Book();
 }