tmf: Add some unit tests to the ITmfStatistics
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / statistics / TmfEventsStatisticsTest.java
1 /*******************************************************************************
2 * Copyright (c) 2012 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Alexandre Montplaisir - Initial API and implementation
11 ******************************************************************************/
12
13 package org.eclipse.linuxtools.tmf.core.tests.statistics;
14
15 import org.eclipse.linuxtools.tmf.core.exceptions.TmfTraceException;
16 import org.eclipse.linuxtools.tmf.core.statistics.TmfEventsStatistics;
17 import org.junit.BeforeClass;
18
19 /**
20 * Unit tests for the {@link TmfEventsStatistics}
21 *
22 * @author Alexandre Montplaisir
23 */
24 public class TmfEventsStatisticsTest extends TmfStatisticsTest {
25
26 /**
27 * Set up the fixture once for all tests.
28 */
29 @BeforeClass
30 public static void setUpClass() {
31 try {
32 backend = new TmfEventsStatistics(TestParams.createTrace());
33 } catch (TmfTraceException e) {
34 e.printStackTrace();
35 }
36 }
37 }
This page took 0.034237 seconds and 6 git commands to generate.