Implement TmfTrace changes - introduce TmfTraceException
[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 org.eclipse.linuxtools.internal.lttng2.kernel.core.stateprovider.CTFDummyInput;
16 import org.eclipse.linuxtools.tmf.core.exceptions.TmfTraceException;
17 import org.junit.BeforeClass;
18
19 /**
20 * Test the dummy CTF input plugin
21 *
22 * @author alexmont
23 *
24 */
25 public class CTFDummyInputTest extends CTFKernelStateInputTest {
26
27 /* Hiding superclass method */
28 @BeforeClass
29 public static void initialize() throws TmfTraceException {
30 input = new CTFDummyInput(CTFTestFiles.getTestTrace());
31 }
32
33 }
This page took 0.029849 seconds and 5 git commands to generate.