Package edu.jas.arith
Class ModLongTest
- java.lang.Object
-
- junit.framework.Assert
-
- junit.framework.TestCase
-
- edu.jas.arith.ModLongTest
-
- All Implemented Interfaces:
junit.framework.Test
public class ModLongTest extends junit.framework.TestCase
ModLong tests with JUnit.- Author:
- Heinz Kredel
-
-
Constructor Summary
Constructors Constructor Description ModLongTest(java.lang.String name)Constructs aModLongTestobject.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected static java.math.BigIntegergetPrime1()protected static java.math.BigIntegergetPrime2()protected static java.math.BigIntegergetPrime3()protected static java.math.BigIntegergetPrime4()static voidmain(java.lang.String[] args)main.protected voidsetUp()static junit.framework.Testsuite()protected voidtearDown()voidtestAddition()Test addition.voidtestBitLength()Test bitLength.voidtestChineseRemainder()Test chinese remainder.voidtestChineseRemainderLists()Test chinese remainder of lists.voidtestConstants()Test static initialization and constants.voidtestConstructor()Test constructor and toString.voidtestIterator()Test iterator.voidtestMultiplication()Test multiplication.voidtestRandom()Test random modular integers.voidtestTiming()Test timing ModLong 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
-
-
-
-
Constructor Detail
-
ModLongTest
public ModLongTest(java.lang.String name)
Constructs aModLongTestobject.- 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:
setUpin classjunit.framework.TestCase
-
tearDown
protected void tearDown()
- Overrides:
tearDownin classjunit.framework.TestCase
-
getPrime1
protected static java.math.BigInteger getPrime1()
-
getPrime2
protected static java.math.BigInteger getPrime2()
-
getPrime3
protected static java.math.BigInteger getPrime3()
-
getPrime4
protected static java.math.BigInteger getPrime4()
-
testConstants
public void testConstants()
Test static initialization and constants.
-
testBitLength
public void testBitLength()
Test bitLength.
-
testConstructor
public void testConstructor()
Test constructor and toString.
-
testRandom
public void testRandom()
Test random modular integers.
-
testAddition
public void testAddition()
Test addition.
-
testMultiplication
public void testMultiplication()
Test multiplication.
-
testChineseRemainder
public void testChineseRemainder()
Test chinese remainder.
-
testChineseRemainderLists
public void testChineseRemainderLists()
Test chinese remainder of lists.
-
testTiming
public void testTiming()
Test timing ModLong to ModInteger.
-
testIterator
public void testIterator()
Test iterator.
-
-