~ubuntu-branches/ubuntu/oneiric/commons-math/oneiric

« back to all changes in this revision

Viewing changes to src/test/java/org/apache/commons/math/linear/BlockFieldMatrixTest.java

  • Committer: Bazaar Package Importer
  • Author(s): Damien Raude-Morvan, Torsten Werner, Damien Raude-Morvan
  • Date: 2011-03-07 21:14:46 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20110307211446-4zea7og4eeyzhpai
Tags: 2.2-1
[ Torsten Werner ]
* Change maintainers into Maintainers.

[ Damien Raude-Morvan ]
* New upstream release (Closes: #617209).
* d/control: Bump Standards-Version to 3.9.1 (no changes needed).
* d/copyright: Refresh years, upgrade to DEP5 r166 and relicence my work
  under Apache-2.0.
* d/ant.properties: Set junit.jar to /usr/share/java/junit4.jar
  to ensure unit tests are launched.
* d/docs: Install upstream RELEASE-NOTES.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
import junit.framework.TestCase;
23
23
 
24
24
import org.apache.commons.math.TestUtils;
 
25
import org.apache.commons.math.linear.MatrixVisitorException;
25
26
import org.apache.commons.math.fraction.Fraction;
26
27
import org.apache.commons.math.fraction.FractionField;
27
28
 
28
29
/**
29
30
 * Test cases for the {@link BlockFieldMatrix} class.
30
31
 *
31
 
 * @version $Revision: 902201 $ $Date: 2010-01-22 13:18:16 -0500 (Fri, 22 Jan 2010) $
 
32
 * @version $Revision: 1073158 $ $Date: 2011-02-21 22:46:52 +0100 (lun. 21 févr. 2011) $
32
33
 */
33
34
 
34
35
public final class BlockFieldMatrixTest extends TestCase {
1150
1151
 
1151
1152
    }
1152
1153
 
1153
 
    public void testWalk() {
 
1154
    public void testWalk() throws MatrixVisitorException {
1154
1155
        int rows    = 150;
1155
1156
        int columns = 75;
1156
1157