mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Renamed ArrayUtilsTest to ArrayUtilTest.
This commit is contained in:
parent
1e014bba19
commit
07ad10c78f
2 changed files with 7 additions and 8 deletions
|
@ -6,20 +6,19 @@
|
|||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Markus Schorn - initial API and implementation
|
||||
* Markus Schorn - initial API and implementation
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.cdt.core.parser.tests;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
|
||||
import org.eclipse.cdt.core.parser.util.ArrayUtil;
|
||||
|
||||
public class ArrayUtilsTest extends TestCase {
|
||||
private Object o1= new Object();
|
||||
private Object o2= new Object();
|
||||
private Object o3= new Object();
|
||||
private Object o4= new Object();
|
||||
public class ArrayUtilTest extends TestCase {
|
||||
private final Object o1= new Object();
|
||||
private final Object o2= new Object();
|
||||
private final Object o3= new Object();
|
||||
private final Object o4= new Object();
|
||||
|
||||
public void testAppend() {
|
||||
Object[] array= null;
|
|
@ -28,7 +28,7 @@ import org.eclipse.cdt.core.parser.tests.scanner.ScannerTestSuite;
|
|||
public class ParserTestSuite extends TestCase {
|
||||
public static Test suite() {
|
||||
TestSuite suite= new TestSuite(ParserTestSuite.class.getName());
|
||||
suite.addTestSuite(ArrayUtilsTest.class);
|
||||
suite.addTestSuite(ArrayUtilTest.class);
|
||||
suite.addTestSuite(CharArrayUtilsTest.class);
|
||||
suite.addTestSuite(SegmentMatcherTest.class);
|
||||
suite.addTestSuite(ContentAssistMatcherFactoryTest.class);
|
||||
|
|
Loading…
Add table
Reference in a new issue