~ubuntu-branches/ubuntu/quantal/commons-math/quantal

« back to all changes in this revision

Viewing changes to src/test/java/org/apache/commons/math/exception/util/ArgUtilsTest.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:
 
1
/*
 
2
 * Licensed to the Apache Software Foundation (ASF) under one or more
 
3
 * contributor license agreements.  See the NOTICE file distributed with
 
4
 * this work for additional information regarding copyright ownership.
 
5
 * The ASF licenses this file to You under the Apache License, Version 2.0
 
6
 * (the "License"); you may not use this file except in compliance with
 
7
 * the License.  You may obtain a copy of the License at
 
8
 *
 
9
 *      http://www.apache.org/licenses/LICENSE-2.0
 
10
 *
 
11
 * Unless required by applicable law or agreed to in writing, software
 
12
 * distributed under the License is distributed on an "AS IS" BASIS,
 
13
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
14
 * See the License for the specific language governing permissions and
 
15
 * limitations under the License.
 
16
 */
 
17
package org.apache.commons.math.exception.util;
 
18
 
 
19
import java.util.List;
 
20
import java.util.ArrayList;
 
21
 
 
22
import org.junit.Assert;
 
23
import org.junit.Test;
 
24
 
 
25
/**
 
26
 * Test for {@link ArgUtils}.
 
27
 * 
 
28
 * @version $Revision$ $Date$ 
 
29
 */
 
30
public class ArgUtilsTest {
 
31
    @Test
 
32
    public void testFlatten() {
 
33
        final List<Object> orig = new ArrayList<Object>();
 
34
 
 
35
        final Object[] struct = new Object[] {
 
36
            new Object[] {
 
37
                new Object[] {
 
38
                    create(orig),
 
39
                    create(orig),
 
40
                },
 
41
                create(orig),
 
42
                new Object[] {
 
43
                    create(orig),
 
44
                }
 
45
            },
 
46
            create(orig),
 
47
            new Object[] {
 
48
                create(orig),
 
49
                new Object[] {
 
50
                    create(orig),
 
51
                    create(orig),
 
52
                }
 
53
            },
 
54
            create(orig),
 
55
        };
 
56
 
 
57
        Object[] flat = ArgUtils.flatten(struct);
 
58
        Assert.assertEquals(flat.length, orig.size());
 
59
 
 
60
        for (int i = 0, max = orig.size(); i < max; i++) {
 
61
            Assert.assertEquals(orig.get(i), flat[i]);
 
62
        }
 
63
    }
 
64
 
 
65
    /**
 
66
     * Create and store an {@code Object}.
 
67
     *
 
68
     * @param list List to store to.
 
69
     * @return the stored object.
 
70
     */
 
71
    private Object create(List<Object> list) {
 
72
        final Object o = new Object();
 
73
        list.add(o);
 
74
        return o;
 
75
    }
 
76
}