Abacus.DoublePrecision.Vector3Tests.TestConstant_Left_i C# (CSharp) Method

TestConstant_Left_i() private method

private TestConstant_Left_i ( ) : void
return void
        public void TestConstant_Left_i ()
        {
            Vector3 result = Vector3.Left;
            Vector3 expected = new Vector3(-1, 0, 0);
            AssertEqualWithinReason(result, expected);
        }
Vector3Tests