Move alltests plugin to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ctf.core.tests / src / org / eclipse / linuxtools / tmf / ctf / core / tests / statistics / TmfEventsStatisticsTest.java
CommitLineData
e1c43333 1/*******************************************************************************
61759503 2 * Copyright (c) 2012, 2013 Ericsson
e1c43333
AM
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
91e7f946 13package org.eclipse.linuxtools.tmf.ctf.core.tests.statistics;
e1c43333 14
5dd1fa65
AM
15import static org.junit.Assume.assumeTrue;
16
e1c43333
AM
17import org.eclipse.linuxtools.tmf.core.statistics.TmfEventsStatistics;
18import org.junit.BeforeClass;
19
20/**
21 * Unit tests for the {@link TmfEventsStatistics}
22 *
23 * @author Alexandre Montplaisir
24 */
25public class TmfEventsStatisticsTest extends TmfStatisticsTest {
26
27 /**
28 * Set up the fixture once for all tests.
29 */
30 @BeforeClass
31 public static void setUpClass() {
9ac63b5b
AM
32 assumeTrue(testTrace.exists());
33 backend = new TmfEventsStatistics(testTrace.getTrace());
e1c43333
AM
34 }
35}
This page took 0.046429 seconds and 5 git commands to generate.