Package edu.jas.arith

Class BigIntegerTest

  • All Implemented Interfaces:
    junit.framework.Test

    public class BigIntegerTest
    extends junit.framework.TestCase
    BigInteger tests with JUnit.
    Author:
    Heinz Kredel
    • Constructor Summary

      Constructors 
      Constructor Description
      BigIntegerTest​(java.lang.String name)
      Constructs a BigIntegerTest object.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static void main​(java.lang.String[] args)
      main
      protected void setUp()  
      static junit.framework.Test suite()
      suite.
      protected void tearDown()  
      void testAddition()
      Test addition.
      void testBitLength()
      Test bitLength.
      void testConstants()
      Test static initialization and constants.
      void testConstructor()
      Test constructor and toString.
      void testDistributive()
      Test distributive law.
      void testGcd()
      Test gcd.
      void testIterator()
      Test iterator.
      void testMultiplication()
      Test multiplication.
      void testNNIterator()
      Test non-negative iterator.
      void testRandom()
      Test random integer.
      • Methods inherited from class junit.framework.TestCase

        assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertTrue, assertTrue, countTestCases, createResult, fail, fail, failNotEquals, failNotSame, failSame, format, getName, run, run, runBare, runTest, setName, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • BigIntegerTest

        public BigIntegerTest​(java.lang.String name)
        Constructs a BigIntegerTest object.
        Parameters:
        name - String.
    • Method Detail

      • main

        public static void main​(java.lang.String[] args)
        main
      • suite

        public static junit.framework.Test suite()
        suite.
      • setUp

        protected void setUp()
        Overrides:
        setUp in class junit.framework.TestCase
      • tearDown

        protected void tearDown()
        Overrides:
        tearDown in class junit.framework.TestCase
      • testConstants

        public void testConstants()
        Test static initialization and constants.
      • testConstructor

        public void testConstructor()
        Test constructor and toString.
      • testRandom

        public void testRandom()
        Test random integer.
      • testGcd

        public void testGcd()
        Test gcd.
      • testNNIterator

        public void testNNIterator()
        Test non-negative iterator.