public void getPartsReturnsPartsofThing()
    {
      Thing thing = new Thing("hat");
      var thing2 = thing.AddPart(new Thing("hatband"));
      Assert.That(thing.GetParts().First().SameIdentityAs(thing2), Is.True);

    }