001 /* 002 * Licensed to the Apache Software Foundation (ASF) under one or more 003 * contributor license agreements. See the NOTICE file distributed with this 004 * work for additional information regarding copyright ownership. The ASF 005 * licenses this file to You under the Apache License, Version 2.0 (the 006 * "License"); you may not use this file except in compliance with the License. 007 * You may obtain a copy of the License at 008 * http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law 009 * or agreed to in writing, software distributed under the License is 010 * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 011 * KIND, either express or implied. See the License for the specific language 012 * governing permissions and limitations under the License. 013 */ 014 package org.apache.commons.math.stat.descriptive; 015 016 import junit.framework.Test; 017 import junit.framework.TestSuite; 018 019 /** 020 * Test cases for the {@link SynchronizedSummaryStatisticsTest} class. 021 * @version $Revision: 762087 $ $Date: 2007-08-16 15:36:33 -0500 (Thu, 16 Aug 022 * 2007) $ 023 */ 024 public final class SynchronizedSummaryStatisticsTest extends SummaryStatisticsTest { 025 026 public SynchronizedSummaryStatisticsTest(String name) { 027 super(name); 028 } 029 030 public static Test suite() { 031 TestSuite suite = new TestSuite(SynchronizedSummaryStatisticsTest.class); 032 suite.setName("SynchronizedSummaryStatistics Tests"); 033 return suite; 034 } 035 036 @Override 037 protected SummaryStatistics createSummaryStatistics() { 038 return new SynchronizedSummaryStatistics(); 039 } 040 }