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

            VectorType vectorType = new VectorType();
            vectorType.Read(data);

            float epsilon = 0.0001f;
            Assert.AreEqual(1, vectorType.X, epsilon);
            Assert.AreEqual(10, vectorType.Y, epsilon);
            Assert.AreEqual(100, vectorType.Z, epsilon);
        }