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 / AllAnalysisGraphCoreTests.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;
11
12 import org.junit.runner.RunWith;
13 import org.junit.runners.Suite;
14
15 /**
16 * Master test suite for this plugin
17 */
18 @RunWith(Suite.class)
19 @Suite.SuiteClasses({
20 org.eclipse.tracecompass.analysis.graph.core.tests.analysis.criticalpath.AllTests.class,
21 org.eclipse.tracecompass.analysis.graph.core.tests.graph.AllTests.class
22 })
23 public class AllAnalysisGraphCoreTests {
24
25 }
26
This page took 0.031295 seconds and 5 git commands to generate.