~ubuntu-branches/ubuntu/maverick/commons-math/maverick

« back to all changes in this revision

Viewing changes to src/test/java/org/apache/commons/math/stat/descriptive/SynchronizedSummaryStatisticsTest.java

  • Committer: Bazaar Package Importer
  • Author(s): Damien Raude-Morvan
  • Date: 2009-08-22 01:13:25 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090822011325-hi4peq1ua5weguwn
Tags: 2.0-1
* New upstream release.
* Set Maintainer field to Debian Java Team
* Add myself as Uploaders
* Switch to Quilt patch system:
  - Refresh all patchs
  - Remove B-D on dpatch, Add B-D on quilt
  - Include patchsys-quilt.mk in debian/rules
* Bump Standards-Version to 3.8.3:
  - Add a README.source to describe patch system
* Maven POMs:
  - Add a Build-Depends-Indep dependency on maven-repo-helper
  - Use mh_installpom and mh_installjar to install the POM and the jar to the
    Maven repository
* Use default-jdk/jre:
  - Depends on java5-runtime-headless
  - Build-Depends on default-jdk
  - Use /usr/lib/jvm/default-java as JAVA_HOME
* Move api documentation to /usr/share/doc/libcommons-math-java/api
* Build-Depends on junit4 instead of junit

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 this
 
4
 * work for additional information regarding copyright ownership. The ASF
 
5
 * licenses this file to You under the Apache License, Version 2.0 (the
 
6
 * "License"); you may not use this file except in compliance with the License.
 
7
 * You may obtain a copy of the License at
 
8
 * http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law
 
9
 * or agreed to in writing, software distributed under the License is
 
10
 * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 
11
 * KIND, either express or implied. See the License for the specific language
 
12
 * governing permissions and limitations under the License.
 
13
 */
 
14
package org.apache.commons.math.stat.descriptive;
 
15
 
 
16
import junit.framework.Test;
 
17
import junit.framework.TestSuite;
 
18
 
 
19
/**
 
20
 * Test cases for the {@link SynchronizedSummaryStatisticsTest} class.
 
21
 * @version $Revision: 762087 $ $Date: 2007-08-16 15:36:33 -0500 (Thu, 16 Aug
 
22
 *          2007) $
 
23
 */
 
24
public final class SynchronizedSummaryStatisticsTest extends SummaryStatisticsTest {
 
25
 
 
26
    public SynchronizedSummaryStatisticsTest(String name) {
 
27
        super(name);
 
28
    }
 
29
 
 
30
    public static Test suite() {
 
31
        TestSuite suite = new TestSuite(SynchronizedSummaryStatisticsTest.class);
 
32
        suite.setName("SynchronizedSummaryStatistics Tests");
 
33
        return suite;
 
34
    }
 
35
 
 
36
    @Override
 
37
    protected SummaryStatistics createSummaryStatistics() {
 
38
        return new SynchronizedSummaryStatistics();
 
39
    }
 
40
}