tmf: Fix GTK bug when setting top item after changing tree font
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.graph.core.tests / src / org / eclipse / tracecompass / analysis / graph / core / tests / analysis / criticalpath / AllTests.java
1 /*******************************************************************************
2 * Copyright (c) 2015 École Polytechnique de Montréal
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
10 package org.eclipse.tracecompass.analysis.graph.core.tests.analysis.criticalpath;
11
12 import org.junit.runner.RunWith;
13 import org.junit.runners.Suite;
14
15 /**
16 * Test suite for the critical path package
17 */
18 @RunWith(Suite.class)
19 @Suite.SuiteClasses({
20 TmfCriticalPathAlgoBoundedTest.class,
21 })
22 public class AllTests {
23
24 }
25
This page took 0.031438 seconds and 5 git commands to generate.