lttng: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.pcap.core.tests / src / org / eclipse / linuxtools / pcap / core / tests / AllPcapCoreTests.java
CommitLineData
a1d21447
VP
1/*******************************************************************************
2 * Copyright (c) 2014 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 * Vincent Perot - Initial API and implementation
11 *******************************************************************************/
12
13package org.eclipse.linuxtools.pcap.core.tests;
14
15import org.junit.runner.RunWith;
16import org.junit.runners.Suite;
17
18/**
19 * Master test suite
20 */
21@RunWith(Suite.class)
22@Suite.SuiteClasses({
23 org.eclipse.linuxtools.pcap.core.tests.file.AllTests.class,
24 org.eclipse.linuxtools.pcap.core.tests.packet.AllTests.class,
25 org.eclipse.linuxtools.pcap.core.tests.protocol.AllTests.class,
26 org.eclipse.linuxtools.pcap.core.tests.protocol.ethernet2.AllTests.class,
27 org.eclipse.linuxtools.pcap.core.tests.protocol.ipv4.AllTests.class,
28 org.eclipse.linuxtools.pcap.core.tests.protocol.pcap.AllTests.class,
29 org.eclipse.linuxtools.pcap.core.tests.protocol.tcp.AllTests.class,
30 org.eclipse.linuxtools.pcap.core.tests.protocol.udp.AllTests.class,
31 org.eclipse.linuxtools.pcap.core.tests.protocol.unknown.AllTests.class,
32 org.eclipse.linuxtools.pcap.core.tests.stream.AllTests.class
33})
34public class AllPcapCoreTests {
35
36}
This page took 0.026869 seconds and 5 git commands to generate.