public void Write__Writing_A_Valid_VectorType()
        {
            VectorType vectorType = new VectorType();
            vectorType.X = 1;
            vectorType.Y = 10;
            vectorType.Z = 100;

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

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