public void MusicSelection_MethodSetIsLendable_FieldIsLendableSetCorrectly()
        {
            //Arrange
            Contributor        composer         = new Contributor(new Name("David", "", "Haas"), "Composer");
            MusicSelectionMock myMusicSelection =
                new MusicSelectionMock("9999991e810c19729de860ea", "507f191e810c19729de860ea", "Blest Are They", composer);

            //Act
            myMusicSelection.setIsLendable(true);

            //Assert
            Assert.AreEqual(true, myMusicSelection.IsLendable);
        }