public void Read__Reading_A_Valid_RealType()
        {
            byte[] data = File.ReadAllBytes("Content/Tests/ChoiceType/ChoiceType-Data.bin");

            ChoiceType choiceType = new ChoiceType();
            choiceType.Read(data);

            Assert.AreEqual(2, choiceType.Value);
        }