Example #1
0
        public void GivenExpectedAnswer_MoveAlongRay_VerifyPosition(float x, float y, float z, float w)
        {
            var expectedAnswer = new Vector4(x, y, z, w);

            var actualAnswer = _rayInstance.GetPosition(_distance);

            Assert.Equal(expectedAnswer, actualAnswer);
        }