~ubuntu-branches/ubuntu/wily/eclipse-linuxtools/wily

« back to all changes in this revision

Viewing changes to systemtap/org.eclipse.linuxtools.systemtap.graphingapi.core.tests/src/org/eclipse/linuxtools/systemtap/graphingapi/core/tests/aggregates/MinAggregateTest.java

  • Committer: Package Import Robot
  • Author(s): Jakub Adam, Jakub Adam, tony mancill
  • Date: 2014-10-11 11:44:05 UTC
  • mfrom: (1.2.4)
  • Revision ID: package-import@ubuntu.com-20141011114405-yazjvxfzzhmi5sgj
Tags: 3.1.0-1
[ Jakub Adam ]
* New upstream release (Closes: #761524).
* Refreshed d/patches.
* Don't build removed feature org.eclipse.linuxtools.tools.launch
  - merged into org.eclipse.linuxtools.profiling.
* Use javac target 1.7.
* Build new feature org.eclipse.linuxtools.dataviewers.feature
  - required by Valgrind integration.
* Build-depend on eclipse-remote-services-api and eclipse-cdt-autotools.
* Bump Standards-Version to 3.9.6.
* Override incompatible-java-bytecode-format - linuxtools needs Java 7.
* Remove unused codeless-jar override.

[ tony mancill ]
* Tweak short package description to make lintian happy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*******************************************************************************
2
 
 * Copyright (c) 2006 IBM Corporation.
3
 
 * All rights reserved. This program and the accompanying materials
4
 
 * are made available under the terms of the Eclipse Public License v1.0
5
 
 * which accompanies this distribution, and is available at
6
 
 * http://www.eclipse.org/legal/epl-v10.html
7
 
 *
8
 
 * Contributors:
9
 
 *     IBM Corporation - Jeff Briggs, Henry Hughes, Ryan Morse
10
 
 *******************************************************************************/
11
 
 
12
 
package org.eclipse.linuxtools.systemtap.graphingapi.core.tests.aggregates;
13
 
 
14
 
import static org.junit.Assert.assertEquals;
15
 
import static org.junit.Assert.assertNull;
16
 
import static org.junit.Assert.assertTrue;
17
 
 
18
 
import org.eclipse.linuxtools.systemtap.graphingapi.core.aggregates.MinAggregate;
19
 
import org.eclipse.linuxtools.systemtap.graphingapi.core.tests.MockDataSet;
20
 
import org.junit.Test;
21
 
 
22
 
public class MinAggregateTest  {
23
 
 
24
 
        @Test
25
 
        public void testAggregate() {
26
 
                MinAggregate aa = new MinAggregate();
27
 
                Number num;
28
 
 
29
 
                num = aa.aggregate(null);
30
 
                assertNull(num);
31
 
 
32
 
                num = aa.aggregate(new Number[] {});
33
 
                assertNull(num);
34
 
 
35
 
                num = aa.aggregate(MockDataSet.buildIntegerArray(new int[] {0,0,0}));
36
 
                assertEquals(0, num.intValue());
37
 
                
38
 
                num = aa.aggregate(MockDataSet.buildIntegerArray(new int[] {-1,0,1}));
39
 
                assertEquals(-1, num.intValue());
40
 
 
41
 
                num = aa.aggregate(MockDataSet.buildIntegerArray(new int[] {0,0,1}));
42
 
                assertEquals(0, num.intValue());
43
 
 
44
 
 
45
 
                num = aa.aggregate(MockDataSet.buildDoubleArray(new double[] {0,0,0}));
46
 
                assertEquals(0.0, num.doubleValue(), 0.0);
47
 
                
48
 
                num = aa.aggregate(MockDataSet.buildDoubleArray(new double[] {-1,0,1}));
49
 
                assertEquals(-1.0, num.doubleValue(), 0.0);
50
 
 
51
 
                num = aa.aggregate(MockDataSet.buildDoubleArray(new double[] {0,0,1}));
52
 
                assertEquals(0.0, num.doubleValue(), 0.0);
53
 
        }
54
 
 
55
 
        @Test
56
 
        public void testGetID() {
57
 
                MinAggregate aa = new MinAggregate();
58
 
                assertTrue(MinAggregate.ID.equals(aa.getID()));
59
 
        }
60
 
        
61
 
}