ComplexTest.cs :  » Network-Clients » Jabber-Net » test » bedrock » util » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Network Clients » Jabber Net 
Jabber Net » test » bedrock » util » ComplexTest.cs
/* --------------------------------------------------------------------------
 *
 * License
 *
 * The contents of this file are subject to the Jabber Open Source License
 * Version 1.0 (the "License").  You may not copy or use this file, in either
 * source code or executable form, except in compliance with the License.  You
 * may obtain a copy of the License at http://www.jabber.com/license/ or at
 * http://www.opensource.org/.  
 *
 * Software distributed under the License is distributed on an "AS IS" basis,
 * WITHOUT WARRANTY OF ANY KIND, either express or implied.  See the License
 * for the specific language governing rights and limitations under the
 * License.
 *
 * Copyrights
 * 
 * Portions created by or assigned to Cursive Systems, Inc. are 
 * Copyright (c) 2002 Cursive Systems, Inc.  All Rights Reserved.  Contact
 * information for Cursive Systems, Inc. is available at http://www.cursive.net/.
 *
 * Portions Copyright (c) 2002 Joe Hildebrand.
 * 
 * Acknowledgements
 * 
 * Special thanks to the Jabber Open Source Contributors for their
 * suggestions and support of Jabber.
 * 
 * --------------------------------------------------------------------------*/
using System;
using System.Diagnostics;
using NUnit.Framework;
using bedrock.util;
namespace test.bedrock.util{
    
    [RCS(@"$Header: /home/cvs/jabber-net/test/bedrock/util/ComplexTest.cs,v 1.1 2002/07/11 22:03:21 hildjj Exp $")]
    public class ComplexTest : TestCase
    {
        public ComplexTest(string name) : base(name)
        {}
        public static ITest Suite
        {
            get { return new TestSuite(typeof(ComplexTest)); }
        }
        private void AssertEquals(double first, double second)
        {
            bool pass = Math.Abs(first - second) < 1e-7;
            if (!pass)
                Console.WriteLine("{0} != {1}", first, second);
            Assert(pass);
        }
        public void Test_ToString()
        {
            Complex c = new Complex(2, 3);
            AssertEquals("2 + 3i", c.ToString());
            c.Imaginary = 0;
            AssertEquals("2", c.ToString());
            c.Imaginary = -3;
            AssertEquals("2 - 3i", c.ToString());
            c.Real = 0;
            AssertEquals("-3i", c.ToString());
            
            c.Imaginary = 3;
            AssertEquals("3i", c.ToString());
            
            c.Imaginary = Double.PositiveInfinity;
            AssertEquals("Infinity", c.ToString());
            
            c.Imaginary = Double.NaN;
            AssertEquals("NaN", c.ToString());
        }
        
        public void Test_Equals()
        {
            Complex z = new Complex(2, 3);
            Complex w = new Complex(2, 3);
            AssertEquals(z, w);
            Assert(z == w);
            z = 3d;
            Assert(z == 3d);
        }
        
        public void Test_Cast()
        {
            Complex z = new Complex(4);
            int i = 4;
            long l = 4;
            float f = 4;
            double d = 4;
            
            Assert( z == i );
            Assert( z == l );        
            Assert( z == f );
            Assert( z == d );
            Assert( z == (Complex)i );
            Assert( z == (Complex)l );        
            Assert( z == (Complex)f );
            Assert( z == (Complex)d );
        }
        
        public void Test_Add()
        {
            Complex z = new Complex(2, 3);
            Complex w = new Complex(2, -5);
            AssertEquals(z + w, new Complex(4, -2));
        }
        public void Test_Mult()
        {
            Complex z = new Complex(2, 3);
            Complex w = new Complex(2, -5);
            AssertEquals(new Complex(19, -4), z * w);
        }
        
        public void Test_Div()
        {
            Complex z = new Complex(3, 5);
            Complex w = new Complex(3, -1);
            AssertEquals(new Complex(.4, 1.8), z / w);
            w = new Complex(1, 3);
            AssertEquals(new Complex(1.8, -0.4), z / w);
            
            z = new Complex(3, 6);
            AssertEquals(new Complex(1, 2), z / 3);
        }
        public void Test_Conj()
        {
            Complex z = new Complex(7, 5);
            AssertEquals(new Complex(7, -5), z.Conjugate());
        }
        public void Test_Abs()
        {
            Complex z = new Complex(3, 4);
            AssertEquals(z.Abs(),  5d);
            z = new Complex(99, 20);
            AssertEquals(z.Abs(), 101d);
            z = new Complex(3);
            AssertEquals(z.Abs(), 3);
            z = new Complex(0,3);
            AssertEquals(z.Abs(), 3);
        }
        
        public void Test_Neg()
        {
            Complex z = new Complex(3, 4);
            AssertEquals(new Complex(-3, -4), -z);
        }
        
        public void Test_Sqrt()
        {
            double s2 = Math.Sqrt(2);
            Complex z = new Complex(3, 4);
            AssertEquals(new Complex(2, 1), z.Sqrt());
            z = new Complex(6,8);
            AssertEquals(new Complex(2 * s2, s2), z.Sqrt());
            z = new Complex(0,0);
            AssertEquals(new Complex(0,0), z.Sqrt());
            z = new Complex(2);
            AssertEquals(new Complex(s2, 0), z.Sqrt());
            z = new Complex(0, 8);
            AssertEquals(new Complex(2, 2), z.Sqrt());
            z = new Complex(99, 20);
            AssertEquals(new Complex(10,1), z.Sqrt());
        }
        public void Test_Exp()
        {
            Complex z = new Complex(0, Math.PI);
            AssertEquals(new Complex(-1), z.Exp());
            z = new Complex(1,1);
            AssertEquals(new Complex(1.468693939915885, 2.287355287178842),
                         z.Exp());
        }
        public void Test_Polar()
        {
            Complex z = Complex.Polar(1, Math.PI);
            AssertEquals(new Complex(-1), z);
        }
        public void Test_Pow()
        {
            Complex z = new Complex(1, 1);
            AssertEquals(new Complex(-2, 2), z.Pow(3));
            AssertEquals(new Complex(-0.265653998849241, 0.3198181138561361),
                         z.Pow(new Complex(2,2)));
        }
        public void Test_Arg()
        {
            Complex z = new Complex(1, 1);
            AssertEquals(0.7853981633974483, z.Arg());
        }
        public void Test_Log()
        {
            Complex z = new Complex(1,1);
            AssertEquals(new Complex(0.3465735902799727, 0.7853981633974483),
                         z.Log());
        }
        public void Test_Sin()
        {
            Complex z = new Complex(1,1);
            AssertEquals(new Complex(1.298457581415977, 0.6349639147847361),
                         z.Sin());
        }
        public void Test_Cos()
        {
            Complex z = new Complex(1,1);
            AssertEquals(new Complex(0.8337300251311491, -0.9888977057628651),
                         z.Cos());
        }
        public void Test_Tan()
        {
            Complex z = new Complex(1,1);
            AssertEquals(new Complex(0.2717525853195117, 1.083923327338695),
                         z.Tan());
        }
        
        public void Test_Inv()
        {
            Complex z = new Complex(1,2);
            AssertEquals(new Complex(0.2d, -0.4d), z.Inverse());      
            z = new Complex(2,1);
            AssertEquals(new Complex(0.4d, -0.2d), z.Inverse());      
        }
        public void Test_Sinh()
        {
            Complex z = new Complex(1,1);
            AssertEquals(new Complex(0.6349639147847361, 1.298457581415977),
                         z.Sinh());      
            
        }
        public void Test_Cosh()
        {
            Complex z = new Complex(1,1);
            AssertEquals(new Complex(0.8337300251311491, 0.9888977057628651),
                         z.Cosh());      
            
        }
        public void Test_Tanh()
        {
            Complex z = new Complex(1,1);
            AssertEquals(new Complex(1.083923327338695, 0.2717525853195117),
                         z.Tanh());      
            
        }
        public void Test_Asin()
        {
            Complex z = new Complex(1,1);
            AssertEquals(new Complex(0.6662394324925153, 1.061275061905036),
                         z.Asin());      
            
        }
        public void Test_Acos()
        {
            Complex z = new Complex(1,1);
            AssertEquals(new Complex(0.9045568943023814, -1.061275061905036),
                         z.Acos());      
            
        }
        public void Test_Atan()
        {
            Complex z = new Complex(1,1);
            AssertEquals(new Complex(1.017221967897851, 0.4023594781085251),
                         z.Atan());        
        }
        public void Test_Asinh()
        {
            Complex z = new Complex(1,1);
            AssertEquals(new Complex(1.061275061905036, 0.6662394324925153),
                         z.Asinh());        
        }
        public void Test_Acosh()
        {
            Complex z = new Complex(1,1);
            AssertEquals(new Complex(1.061275061905036, 0.9045568943023814),
                         z.Acosh());        
        }
        public void Test_Atanh()
        {
            Complex z = new Complex(.5,.5);
            AssertEquals(new Complex(0.4023594781085251, 0.5535743588970453),
                         z.Atanh());        
        }
        public void Test_Nan()
        {
            Complex z = new Complex(Double.NaN);
            Assert(z.IsNaN());
            z.Real = 4;
            Assert(!z.IsNaN());
            z.Imaginary = Double.NaN;
            Assert(z.IsNaN());      
        }
        
        public void Test_Infinity()
        {
            Complex z = new Complex(Double.PositiveInfinity);
            Assert(z.IsInfinity());
            z.Real = 4;
            Assert(!z.IsInfinity());
            z.Imaginary = Double.NegativeInfinity;
            Assert(z.IsInfinity());      
        }
        [ExpectException(typeof(ArgumentOutOfRangeException))]
        public void Test_Tolerance()
        {
            Complex.Tolerance = -1;
        }
        public void Test_Format()
        {
            Complex z = new Complex(1, 2);
            string f = string.Format("{0}", z);
            AssertEquals("1 + 2i", f);
            f = string.Format("{0:f2}", z);
            AssertEquals("1.00 + 2.00i", f);
            z = new Complex(1, -2);
            f = string.Format("{0:c2}", z);
            AssertEquals("$1.00 - $2.00i", f);
        }
    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.