Rationalize ITmfTrace.initTrace()
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.kernel.core.tests / src / org / eclipse / linuxtools / lttng2 / kernel / core / tests / stateprovider / CTFDummyInputTest.java
1 /*******************************************************************************
2 * Copyright (c) 2012 Ericsson
3 * Copyright (c) 2010, 2011 École Polytechnique de Montréal
4 * Copyright (c) 2010, 2011 Alexandre Montplaisir <alexandre.montplaisir@gmail.com>
5 *
6 * All rights reserved. This program and the accompanying materials are
7 * made available under the terms of the Eclipse Public License v1.0 which
8 * accompanies this distribution, and is available at
9 * http://www.eclipse.org/legal/epl-v10.html
10 *
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.lttng2.kernel.core.tests.stateprovider;
14
15 import java.io.FileNotFoundException;
16
17 import org.eclipse.linuxtools.internal.lttng2.kernel.core.stateprovider.CTFDummyInput;
18 import org.junit.BeforeClass;
19
20 /**
21 * Test the dummy CTF input plugin
22 *
23 * @author alexmont
24 *
25 */
26 public class CTFDummyInputTest extends CTFKernelStateInputTest {
27
28 /* Hiding superclass method */
29 @BeforeClass
30 public static void initialize() throws FileNotFoundException {
31 input = new CTFDummyInput(CTFTestFiles.getTestTrace());
32 }
33
34 }
This page took 0.03059 seconds and 5 git commands to generate.