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
|
@ -8,18 +8,17 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Markus Schorn - initial API and implementation
|
* Markus Schorn - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.cdt.core.parser.tests;
|
package org.eclipse.cdt.core.parser.tests;
|
||||||
|
|
||||||
import junit.framework.TestCase;
|
import junit.framework.TestCase;
|
||||||
|
|
||||||
import org.eclipse.cdt.core.parser.util.ArrayUtil;
|
import org.eclipse.cdt.core.parser.util.ArrayUtil;
|
||||||
|
|
||||||
public class ArrayUtilsTest extends TestCase {
|
public class ArrayUtilTest extends TestCase {
|
||||||
private Object o1= new Object();
|
private final Object o1= new Object();
|
||||||
private Object o2= new Object();
|
private final Object o2= new Object();
|
||||||
private Object o3= new Object();
|
private final Object o3= new Object();
|
||||||
private Object o4= new Object();
|
private final Object o4= new Object();
|
||||||
|
|
||||||
public void testAppend() {
|
public void testAppend() {
|
||||||
Object[] array= null;
|
Object[] array= null;
|
|
@ -28,7 +28,7 @@ import org.eclipse.cdt.core.parser.tests.scanner.ScannerTestSuite;
|
||||||
public class ParserTestSuite extends TestCase {
|
public class ParserTestSuite extends TestCase {
|
||||||
public static Test suite() {
|
public static Test suite() {
|
||||||
TestSuite suite= new TestSuite(ParserTestSuite.class.getName());
|
TestSuite suite= new TestSuite(ParserTestSuite.class.getName());
|
||||||
suite.addTestSuite(ArrayUtilsTest.class);
|
suite.addTestSuite(ArrayUtilTest.class);
|
||||||
suite.addTestSuite(CharArrayUtilsTest.class);
|
suite.addTestSuite(CharArrayUtilsTest.class);
|
||||||
suite.addTestSuite(SegmentMatcherTest.class);
|
suite.addTestSuite(SegmentMatcherTest.class);
|
||||||
suite.addTestSuite(ContentAssistMatcherFactoryTest.class);
|
suite.addTestSuite(ContentAssistMatcherFactoryTest.class);
|
||||||
|
|
Loading…
Add table
Reference in a new issue