Afterglow.Graphics.Cameras.Test_Stand.Direction_set_and_get C# (CSharp) Method

Direction_set_and_get() private method

private Direction_set_and_get ( ) : void
return void
        public void Direction_set_and_get()
        {
            var stand = new Stand();
            var direction = new Vector3(4, 5, 6);

            stand.Direction = direction;

            Assert.AreEqual(direction, stand.Direction);
        }