Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 20e77f69c3e67a1194091697da87e8045ef0784f (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                                
                                                        


                                                                        
                                                            


                                          
  
                 



                                                                                 
                                                                  
                                                                    
                                                      
                                                        

                                



                                                       




                                                                                                         
 
/*******************************************************************************
 *  Copyright (c) 2005, 2016 IBM Corporation and others.
 *
 *  This program and the accompanying materials
 *  are made available under the terms of the Eclipse Public License 2.0
 *  which accompanies this distribution, and is available at
 *  https://www.eclipse.org/legal/epl-2.0/
 *
 *  SPDX-License-Identifier: EPL-2.0
 *
 *  Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.ua.tests.intro;

import org.eclipse.ua.tests.intro.anchors.ExtensionReorderingTest;
import org.eclipse.ua.tests.intro.contentdetect.ContentDetectorTest;
import org.eclipse.ua.tests.intro.other.AllOtherTests;
import org.eclipse.ua.tests.intro.parser.AllParserTests;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;

/*
 * Tests all intro (welcome) functionality (automated).
 */
@RunWith(Suite.class)
@Suite.SuiteClasses({
	AllParserTests.class, ContentDetectorTest.class,ExtensionReorderingTest.class,AllOtherTests.class
})
public class AllIntroTests {
}

Back to the top