~ubuntu-branches/debian/sid/eclipse-cdt/sid

« back to all changes in this revision

Viewing changes to core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/rewrite/comenthandler/CommentHandlingTestSuite.java

  • Committer: Package Import Robot
  • Author(s): Jakub Adam
  • Date: 2011-10-06 21:15:04 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20111006211504-8dutmljjih0zikfv
Tags: 8.0.1-1
* New upstream release.
* Split the JNI packages into a separate architecture dependent
  package and made eclipse-cdt architecture independent.
* Install JNI libraries into multiarch aware location
* Bumped Standards-Version to 3.9.2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*******************************************************************************
 
2
 * Copyright (c) 2008 Institute for Software, HSR Hochschule fuer Technik  
 
3
 * Rapperswil, University of applied sciences and others
 
4
 * All rights reserved. This program and the accompanying materials 
 
5
 * are made available under the terms of the Eclipse Public License v1.0 
 
6
 * which accompanies this distribution, and is available at 
 
7
 * http://www.eclipse.org/legal/epl-v10.html  
 
8
 * 
 
9
 * Contributors: 
 
10
 * Institute for Software - initial API and implementation 
 
11
 ******************************************************************************/
 
12
package org.eclipse.cdt.core.parser.tests.rewrite.comenthandler;
 
13
 
 
14
import junit.framework.Test;
 
15
import junit.framework.TestSuite;
 
16
 
 
17
import org.eclipse.cdt.core.parser.tests.rewrite.RewriteTester;
 
18
 
 
19
/**
 
20
 * @author Guido Zgraggen IFS
 
21
 *
 
22
 */
 
23
public class CommentHandlingTestSuite extends TestSuite {
 
24
        
 
25
        public static Test suite() throws Exception {
 
26
                TestSuite suite = new TestSuite(CommentHandlingTestSuite.class.getName());
 
27
                
 
28
                suite.addTest(RewriteTester.suite("CommentTests", "resources/rewrite/CommentHandlingTestSource.rts")); //$NON-NLS-1$ //$NON-NLS-2$
 
29
                
 
30
                suite.addTestSuite(NodeCommentMapTest.class);
 
31
                
 
32
                return suite;
 
33
        }
 
34
        
 
35
}