lttng: Port unit tests to JUnit4
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.core.tests / src / org / eclipse / linuxtools / lttng2 / core / tests / AllTests.java
CommitLineData
79b33284 1/*******************************************************************************
2ba3d0a1 2 * Copyright (c) 2012, 2013 Ericsson
b0318660 3 *
79b33284
FC
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
b0318660 8 *
79b33284
FC
9 * Contributors:
10 * Francois Chouinard - Initial API and implementation
2ba3d0a1 11 * Alexandre Montplaisir - Port to JUnit4
79b33284
FC
12 *******************************************************************************/
13
14package org.eclipse.linuxtools.lttng2.core.tests;
15
2ba3d0a1
AM
16import org.junit.runner.RunWith;
17import org.junit.runners.Suite;
79b33284
FC
18
19/**
2ba3d0a1 20 * Run all the tests in the lttng2.core plugin.
79b33284 21 */
2ba3d0a1
AM
22@RunWith(Suite.class)
23@Suite.SuiteClasses({
24 ActivatorTest.class,
25 org.eclipse.linuxtools.lttng2.core.tests.control.model.impl.AllTests.class
26})
268c6ff3 27public class AllTests {
79b33284 28
79b33284 29}
This page took 0.032453 seconds and 5 git commands to generate.