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

TestStaticFn_Length_i() private method

private TestStaticFn_Length_i ( ) : void
return void
        public void TestStaticFn_Length_i ()
        {
            Vector3 a = new Vector3(3, -4, 12);

            Double expected = 13;

            Double result = a.Length();

            Assert.That(result, Is.EqualTo(expected));
        }
Vector3Tests