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

« back to all changes in this revision

Viewing changes to core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/refactoring/utils/IdentifierHelperTest.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, 2010 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.ui.tests.refactoring.utils;
 
13
 
 
14
import junit.framework.Test;
 
15
import junit.framework.TestSuite;
 
16
 
 
17
/**
 
18
 * @author Thomas Corbat
 
19
 */
 
20
public class IdentifierHelperTest extends TestSuite {
 
21
 
 
22
        public IdentifierHelperTest() {
 
23
                super("Identifier Helper Test"); //$NON-NLS-1$
 
24
        }
 
25
 
 
26
        public static Test suite() {
 
27
                TestSuite suite = new TestSuite("Test for Identifier Helper"); //$NON-NLS-1$
 
28
                suite.addTest(new CorrectCaseTest());
 
29
                suite.addTest(new DigitFirstCaseTest());
 
30
                suite.addTest(new EmptyCaseTest());
 
31
                suite.addTest(new IllegalCharCaseTest());
 
32
                suite.addTest(new KeywordCaseTest());
 
33
                return suite;
 
34
        }
 
35
}