public void Write__Writing_A_Valid_RealType()
        {
            ChoiceType choiceType = new ChoiceType();
            choiceType.Value = 2;

            byte[] writtenData = choiceType.Write();
            byte[] expected = File.ReadAllBytes("Content/Tests/ChoiceType/ChoiceType-Data.bin");

            Assert.AreEqual(BitConverter.ToString(expected), BitConverter.ToString(writtenData));
        }