Merge branch 'master' into lttng-kepler
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.kernel.core.tests / src / org / eclipse / linuxtools / lttng2 / kernel / core / tests / stateprovider / CtfKernelStateInputTest.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 static org.junit.Assert.assertEquals;
16
17 import org.eclipse.linuxtools.internal.lttng2.kernel.core.stateprovider.CtfKernelStateInput;
18 import org.eclipse.linuxtools.tmf.core.exceptions.TmfTraceException;
19 import org.eclipse.linuxtools.tmf.core.statesystem.IStateChangeInput;
20 import org.junit.AfterClass;
21 import org.junit.BeforeClass;
22 import org.junit.Test;
23
24 /**
25 * Tests for the LTTng 2.0 kernel state provider
26 *
27 * @author alexmont
28 *
29 */
30 @SuppressWarnings("javadoc")
31 public class CtfKernelStateInputTest {
32
33 static IStateChangeInput input;
34
35 @BeforeClass
36 public static void initialize() throws TmfTraceException {
37 input = new CtfKernelStateInput(CtfTestFiles.getTestTrace());
38
39 }
40
41 @AfterClass
42 public static void cleanup() {
43 //
44 }
45
46 @Test
47 public void testOpening() {
48 long testStartTime;
49 testStartTime = input.getStartTime();
50 assertEquals(testStartTime, CtfTestFiles.startTime);
51 }
52
53 //FIXME re-enable once we offer history-less state systems again
54 // @Test
55 // public void testRunning() {
56 // StateSystem ss = new StateSystem();
57 // input.assignTargetStateSystem(ss);
58 // input.run();
59 // }
60
61 }
This page took 0.03053 seconds and 5 git commands to generate.