public void RetrieveTest_withInvalidID_AdditionalInfo()
        {
            // Arrange
            SoundMix entry = new SoundMix("_aaa");

            // Act
            int count = entry.Retrieve(false);

            // Assert
            Assert.AreEqual(0, count);

            Assert.AreEqual("_aaa", entry.ID);
            Assert.IsNull(entry.EnglishTitle);
            Assert.IsNull(entry.GermanTitle);
            Assert.IsNull(entry.Details);
            Assert.IsNull(entry.Status);
            Assert.IsNull(entry.LastUpdated);
        }
        public void RetrieveTest_withValidID_AdditionalInfo()
        {
            // Arrange
            SoundMix entry = new SoundMix("_xxx");

            // Act
            int count = entry.Retrieve(false);

            // Assert
            Assert.AreEqual(1, count);

            Assert.AreEqual("_xxx", entry.ID);
            Assert.AreEqual("SoundMix EnglishTitle X", entry.EnglishTitle);
            Assert.AreEqual("SoundMix GermanTitle X", entry.GermanTitle);
            Assert.AreEqual("SoundMix Details X", entry.Details);
            Assert.AreEqual("_xxx", entry.Status.ID);
            Assert.AreEqual("SoundMix LastUpdated X", entry.LastUpdated);
        }