Package edu.jas.arith
Class ModIntegerTest
- java.lang.Object
-
- junit.framework.Assert
-
- junit.framework.TestCase
-
- edu.jas.arith.ModIntegerTest
-
- All Implemented Interfaces:
junit.framework.Test
public class ModIntegerTest extends junit.framework.TestCase
ModInteger tests with JUnit.- Author:
- Heinz Kredel
-
-
Constructor Summary
Constructors Constructor Description ModIntegerTest(java.lang.String name)Constructs aModIntegerTestobject.
-
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()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.-
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
-
ModIntegerTest
public ModIntegerTest(java.lang.String name)
Constructs aModIntegerTestobject.- 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()
-
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.
-
testIterator
public void testIterator()
Test iterator.
-
-