public void createEmptyThingReturnsAUniqueThing()
 {
   Thing thing = new Thing("book");
   Assert.That(thing.SameIdentityAs(new Thing("book")), Is.True);
 }