Package edu.jas.arith
Class ModIntTest
- java.lang.Object
-
- junit.framework.Assert
-
- junit.framework.TestCase
-
- edu.jas.arith.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 aModIntTestobject.
-
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()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 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
-
-
-
-
Constructor Detail
-
ModIntTest
public ModIntTest(java.lang.String name)
Constructs aModIntTestobject.- 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()
-
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 ModInt to ModInteger.
-
testIterator
public void testIterator()
Test iterator.
-
-