May 31st branch "May31"
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.tests / src / org / eclipse / linuxtools / lttng / tests / state / TestStateManager.java
1 /*******************************************************************************
2 * Copyright (c) 2009 Ericsson
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 * Alvaro Sanchez-Leon (alvsan09@gmail.com) - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.lttng.tests.state;
14
15 import junit.framework.TestCase;
16
17 import org.eclipse.linuxtools.lttng.trace.LTTngTrace;
18
19 /**
20 * @author alvaro
21 *
22 */
23 public class TestStateManager extends TestCase {
24
25 /**
26 * TODO: Not used for the time being, for experiment selection test cases
27 * for package state.experiment
28 */
29 public void testSetTraceSelection() {
30 String logName = "traceset/trace1";
31
32 LTTngTrace testStream = null;
33 try {
34 testStream = new LTTngTrace(logName);
35 } catch (Exception e) {
36 e.printStackTrace();
37 }
38
39 if (testStream != null) {
40 LTTngTrace[] streamList = new LTTngTrace[1];
41 streamList[0] = testStream;
42 // TmfExperiment<LttngEvent> newExp = new
43 // TmfExperiment<LttngEvent>(LttngEvent.class, logName, streamList);
44
45 //Get the Test StateManager
46 // IStateTraceManager manager = StateManagerFactoryTestSupport
47 // .getManager(testStream);
48 //Start execution.
49 // manager.experimentUpdated(new TmfExperimentUpdatedSignal(this,
50 // newExp, null), true);
51
52 //Print events not handled.
53 // Set<String> notHandledEvents = manager.getEventsNotHandled();
54 // StringBuilder sb = new StringBuilder();
55 // for (String event : notHandledEvents) {
56 // sb.append("\n" + event);
57 // }
58 // TraceDebug.debug("Events not Handled: " + sb.toString());
59 }
60 }
61 }
This page took 0.031949 seconds and 6 git commands to generate.