EMMA Coverage Report (generated Sun Feb 05 10:43:15 CET 2012)
[all classes][de.uka.ipd.sdq.statistics.estimation.test]

COVERAGE SUMMARY FOR SOURCE FILE [TestMeanEstimator.java]

nameclass, %method, %block, %line, %
TestMeanEstimator.java0%   (0/1)0%   (0/3)0%   (0/53)0%   (0/14)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class TestMeanEstimator0%   (0/1)0%   (0/3)0%   (0/53)0%   (0/14)
TestMeanEstimator (): void 0%   (0/1)0%   (0/3)0%   (0/1)
setUp (): void 0%   (0/1)0%   (0/8)0%   (0/3)
testMeanPointEstimation (): void 0%   (0/1)0%   (0/42)0%   (0/10)

1package de.uka.ipd.sdq.statistics.estimation.test;
2 
3import java.util.ArrayList;
4import java.util.List;
5 
6import junit.framework.TestCase;
7import de.uka.ipd.sdq.statistics.estimation.SampleMeanEstimator;
8 
9public class TestMeanEstimator extends TestCase {
10 
11        private SampleMeanEstimator estimator;
12        
13        @Override
14        protected void setUp() throws Exception {
15                super.setUp();
16                estimator = new SampleMeanEstimator();
17        }
18        
19        public void testMeanPointEstimation() {
20                List<Double> samples = new ArrayList<Double>();
21                samples.add(1.0);
22                samples.add(2.0);
23                samples.add(3.0);
24                samples.add(4.0);
25                samples.add(5.0);
26 
27                double expectedMean = (1.0 + 2.0 + 3.0 + 4.0 + 5.0) / 5.0;
28                double actualMean = estimator.estimatePoint(samples);
29 
30                assertEquals(expectedMean, actualMean);
31        }
32 
33}

[all classes][de.uka.ipd.sdq.statistics.estimation.test]
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov