ctf: Depend on the tracecompass-test-traces project
[deliverable/tracecompass.git] / ctf / org.eclipse.tracecompass.tmf.ctf.core.tests / src / org / eclipse / tracecompass / tmf / ctf / core / tests / temp / statistics / TmfEventsStatisticsTest.java
CommitLineData
e1c43333 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2012, 2014 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
9722e5d7 13package org.eclipse.tracecompass.tmf.ctf.core.tests.temp.statistics;
e1c43333 14
2bdf0193 15import org.eclipse.tracecompass.tmf.core.statistics.TmfEventsStatistics;
c4d57ac1 16import org.eclipse.tracecompass.tmf.ctf.core.tests.shared.CtfTmfTestTraceUtils;
e1c43333
AM
17import org.junit.BeforeClass;
18
19/**
20 * Unit tests for the {@link TmfEventsStatistics}
21 *
22 * @author Alexandre Montplaisir
23 */
24public class TmfEventsStatisticsTest extends TmfStatisticsTest {
25
26 /**
27 * Set up the fixture once for all tests.
28 */
29 @BeforeClass
30 public static void setUpClass() {
c4d57ac1 31 backend = new TmfEventsStatistics(CtfTmfTestTraceUtils.getTrace(testTrace));
e1c43333
AM
32 }
33}
This page took 0.064428 seconds and 5 git commands to generate.