Merge Kernel state system input provider
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.kernel.core.tests / src / org / eclipse / linuxtools / lttng2 / kernel / core / tests / stateprovider / CTFKernelStateInputTest.java
CommitLineData
efc403bb
AM
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
13package org.eclipse.linuxtools.lttng2.kernel.core.tests.stateprovider;
14
15import static org.junit.Assert.*;
16
17import org.junit.AfterClass;
18import org.junit.BeforeClass;
19import org.junit.Test;
20import org.eclipse.linuxtools.tmf.core.statesystem.StateSystem;
21import org.eclipse.linuxtools.tmf.core.statesystem.helpers.IStateChangeInput;
22import org.eclipse.linuxtools.internal.lttng2.kernel.core.stateprovider.CTFKernelStateInput;
23
24/**
25 * Tests for the LTTng 2.0 kernel state provider
26 *
27 * @author alexmont
28 *
29 */
30public class CTFKernelStateInputTest {
31
32 protected static IStateChangeInput input;
33
34 @BeforeClass
35 public static void initialize() {
36 input = new CTFKernelStateInput(CTFTestFiles.getTestTrace());
37
38 }
39
40 @AfterClass
41 public static void cleanup() {
42 //
43 }
44
45 @Test
46 public void testOpening() {
47 long testStartTime;
48 testStartTime = input.getStartTime();
49 assertTrue(testStartTime == CTFTestFiles.startTime1);
50 }
51
52 @Test
53 public void testRunning() {
54 StateSystem ss = new StateSystem();
55 input.assignTargetStateSystem(ss);
56 input.getStateSystem(); /* Let's pad that coverage... */
57 input.run();
58 }
59
60}
This page took 0.051007 seconds and 5 git commands to generate.