test: Make CtfTmfTrace stubs of the right class
[deliverable/tracecompass.git] / ctf / org.eclipse.tracecompass.tmf.ctf.core.tests / stubs / org / eclipse / tracecompass / tmf / ctf / core / tests / stubs / ITmfTraceStub.java
1 /*******************************************************************************
2 * Copyright (c) 2013, 2016 École Polytechnique de Montréal and others
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 * Geneviève Bastien - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.tracecompass.tmf.ctf.core.tests.stubs;
14
15 import org.eclipse.tracecompass.tmf.core.signal.TmfSignalManager;
16 import org.eclipse.tracecompass.tmf.core.signal.TmfTraceOpenedSignal;
17 import org.eclipse.tracecompass.tmf.core.signal.TmfTraceSelectedSignal;
18 import org.eclipse.tracecompass.tmf.core.trace.ITmfTrace;
19
20 /**
21 * Interface for trace stubs
22 */
23 public interface ITmfTraceStub extends ITmfTrace {
24
25 /**
26 * Simulate trace opening, to be called by tests who need an actively opened
27 * trace
28 */
29 default void openTrace() {
30 TmfSignalManager.dispatchSignal(new TmfTraceOpenedSignal(this, this, null));
31 selectTrace();
32 }
33
34 /**
35 * Simulate selecting the trace
36 */
37 default void selectTrace() {
38 TmfSignalManager.dispatchSignal(new TmfTraceSelectedSignal(this, this));
39 }
40 }
This page took 0.031632 seconds and 5 git commands to generate.