Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 24a28a367569cc99c80d02c229e3fbb85e51779f (plain) (tree)
1
2
3
4
5
6
7
8
                                                                                
                                                        



                                                                         
   
                 



                                                                                 

                                



                                



                                                   
 
/*******************************************************************************
 *  Copyright (c) 2008, 2018 IBM Corporation and others.
 *  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:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.equinox.p2.tests.ui.repohandling;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;

/**
 * Performs all UI action tests.
 */
@RunWith(Suite.class)
@Suite.SuiteClasses({ SiteImportExportTest.class })
public class AllTests {
// test suite
}

Back to the top