blob: 2766171311d4abb474ee68ffea07413aa8443642 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 Ericsson
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License v1.0 which
* accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Matthew Khouzam - Initial API and implementation
*******************************************************************************/
package org.eclipse.tracecompass.tmf.pcap.ui.swtbot.tests;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
/**
* Test suite for UI on the PCAP parser and networking perspective
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({
ImportAndReadPcapTest.class,
NetworkPerspectiveChecker.class
})
public class AllTests {
}