rcp: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ctf.core.tests / src / org / eclipse / tracecompass / tmf / ctf / core / tests / temp / statistics / TmfEventsStatisticsTest.java
1 /*******************************************************************************
2 * Copyright (c) 2012, 2014 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.tracecompass.tmf.ctf.core.tests.temp.statistics;
14
15 import static org.junit.Assume.assumeTrue;
16
17 import org.eclipse.tracecompass.tmf.core.statistics.TmfEventsStatistics;
18 import org.junit.BeforeClass;
19
20 /**
21 * Unit tests for the {@link TmfEventsStatistics}
22 *
23 * @author Alexandre Montplaisir
24 */
25 public class TmfEventsStatisticsTest extends TmfStatisticsTest {
26
27 /**
28 * Set up the fixture once for all tests.
29 */
30 @BeforeClass
31 public static void setUpClass() {
32 assumeTrue(testTrace.exists());
33 backend = new TmfEventsStatistics(testTrace.getTrace());
34 }
35 }
This page took 0.031357 seconds and 5 git commands to generate.