Package edu.jas.arith

Class ModIntTest

  • All Implemented Interfaces:
    junit.framework.Test

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

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

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected static java.math.BigInteger getPrime1()  
      protected static java.math.BigInteger getPrime2()  
      protected static java.math.BigInteger getPrime3()  
      static void main​(java.lang.String[] args)
      main.
      protected void setUp()  
      static junit.framework.Test suite()  
      protected void tearDown()  
      void testAddition()
      Test addition.
      void testBitLength()
      Test bitLength.
      void testChineseRemainder()
      Test chinese remainder.
      void testChineseRemainderLists()
      Test chinese remainder of lists.
      void testConstants()
      Test static initialization and constants.
      void testConstructor()
      Test constructor and toString.
      void testIterator()
      Test iterator.
      void testMultiplication()
      Test multiplication.
      void testRandom()
      Test random modular integers.
      void testTiming()
      Test timing ModInt to ModInteger.
      • 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

      • ModIntTest

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

      • main

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

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

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

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

        protected static java.math.BigInteger getPrime1()
      • getPrime2

        protected static java.math.BigInteger getPrime2()
      • getPrime3

        protected static java.math.BigInteger getPrime3()
      • testConstants

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

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

        public void testRandom()
        Test random modular integers.
      • testTiming

        public void testTiming()
        Test timing ModInt to ModInteger.