diff options
author | Brian Vosburgh | 2016-06-09 20:00:55 +0000 |
---|---|---|
committer | Brian Vosburgh | 2017-05-18 22:37:00 +0000 |
commit | d5ba8179b6b2adacbb8e355de00e4b4f1d423295 (patch) | |
tree | 0f91dba86bb8dd422ae8070cb3354b09b36ae6d9 /common | |
parent | f046ad3371592a013bfd65801e4d58d2e664ef5a (diff) | |
download | webtools.dali-d5ba8179b6b2adacbb8e355de00e4b4f1d423295.tar.gz webtools.dali-d5ba8179b6b2adacbb8e355de00e4b4f1d423295.tar.xz webtools.dali-d5ba8179b6b2adacbb8e355de00e4b4f1d423295.zip |
standardize some common utility test suite names
Diffstat (limited to 'common')
5 files changed, 25 insertions, 25 deletions
diff --git a/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/JptCommonUtilityModelTests.java b/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/JptCommonUtilityModelTests.java index 701d6a14de..a21c221b44 100644 --- a/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/JptCommonUtilityModelTests.java +++ b/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/JptCommonUtilityModelTests.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2012 Oracle. All rights reserved. + * Copyright (c) 2007, 2016 Oracle. All rights reserved. * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0, which accompanies this distribution * and is available at http://www.eclipse.org/legal/epl-v10.html. @@ -11,16 +11,16 @@ package org.eclipse.jpt.common.utility.tests.internal.model; import junit.framework.Test; import junit.framework.TestSuite; -import org.eclipse.jpt.common.utility.tests.internal.model.listener.JptUtilityModelListenerTests; -import org.eclipse.jpt.common.utility.tests.internal.model.value.JptUtilityModelValueTests; +import org.eclipse.jpt.common.utility.tests.internal.model.listener.JptCommonUtilityModelListenerTests; +import org.eclipse.jpt.common.utility.tests.internal.model.value.JptCommonUtilityModelValueTests; public class JptCommonUtilityModelTests { public static Test suite() { TestSuite suite = new TestSuite(JptCommonUtilityModelTests.class.getPackage().getName()); - suite.addTest(JptUtilityModelListenerTests.suite()); - suite.addTest(JptUtilityModelValueTests.suite()); + suite.addTest(JptCommonUtilityModelListenerTests.suite()); + suite.addTest(JptCommonUtilityModelValueTests.suite()); suite.addTestSuite(ChangeSupportTests.class); suite.addTestSuite(NewEventTests.class); diff --git a/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/listener/JptUtilityModelListenerTests.java b/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/listener/JptCommonUtilityModelListenerTests.java index 2f4a87f83e..3d1119173f 100644 --- a/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/listener/JptUtilityModelListenerTests.java +++ b/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/listener/JptCommonUtilityModelListenerTests.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2012 Oracle. All rights reserved. + * Copyright (c) 2007, 2016 Oracle. All rights reserved. * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0, which accompanies this distribution * and is available at http://www.eclipse.org/legal/epl-v10.html. @@ -12,10 +12,10 @@ package org.eclipse.jpt.common.utility.tests.internal.model.listener; import junit.framework.Test; import junit.framework.TestSuite; -public class JptUtilityModelListenerTests { +public class JptCommonUtilityModelListenerTests { public static Test suite() { - TestSuite suite = new TestSuite(JptUtilityModelListenerTests.class.getPackage().getName()); + TestSuite suite = new TestSuite(JptCommonUtilityModelListenerTests.class.getPackage().getName()); suite.addTestSuite(ReflectiveCollectionChangeListenerTests.class); suite.addTestSuite(ReflectiveListChangeListenerTests.class); @@ -25,7 +25,7 @@ public class JptUtilityModelListenerTests { return suite; } - private JptUtilityModelListenerTests() { + private JptCommonUtilityModelListenerTests() { super(); throw new UnsupportedOperationException(); } diff --git a/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/value/JptUtilityModelValueTests.java b/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/value/JptCommonUtilityModelValueTests.java index 8347a5992d..ea56db400d 100644 --- a/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/value/JptUtilityModelValueTests.java +++ b/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/value/JptCommonUtilityModelValueTests.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2012 Oracle. All rights reserved. + * Copyright (c) 2007, 2016 Oracle. All rights reserved. * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0, which accompanies this distribution * and is available at http://www.eclipse.org/legal/epl-v10.html. @@ -11,16 +11,16 @@ package org.eclipse.jpt.common.utility.tests.internal.model.value; import junit.framework.Test; import junit.framework.TestSuite; -import org.eclipse.jpt.common.utility.tests.internal.model.value.prefs.JptUtilityModelValuePrefsTests; -import org.eclipse.jpt.common.utility.tests.internal.model.value.swing.JptUtilityModelValueSwingTests; +import org.eclipse.jpt.common.utility.tests.internal.model.value.prefs.JptCommonUtilityModelValuePrefsTests; +import org.eclipse.jpt.common.utility.tests.internal.model.value.swing.JptCommonUtilityModelValueSwingTests; -public class JptUtilityModelValueTests { +public class JptCommonUtilityModelValueTests { public static Test suite() { - TestSuite suite = new TestSuite(JptUtilityModelValueTests.class.getPackage().getName()); + TestSuite suite = new TestSuite(JptCommonUtilityModelValueTests.class.getPackage().getName()); - suite.addTest(JptUtilityModelValuePrefsTests.suite()); - suite.addTest(JptUtilityModelValueSwingTests.suite()); + suite.addTest(JptCommonUtilityModelValuePrefsTests.suite()); + suite.addTest(JptCommonUtilityModelValueSwingTests.suite()); suite.addTestSuite(BufferedModifiablePropertyValueModelTests.class); suite.addTestSuite(CachingTransformationPropertyValueModelTests.class); @@ -71,7 +71,7 @@ public class JptUtilityModelValueTests { return suite; } - private JptUtilityModelValueTests() { + private JptCommonUtilityModelValueTests() { super(); throw new UnsupportedOperationException(); } diff --git a/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/value/prefs/JptUtilityModelValuePrefsTests.java b/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/value/prefs/JptCommonUtilityModelValuePrefsTests.java index 4fec821554..202107a629 100644 --- a/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/value/prefs/JptUtilityModelValuePrefsTests.java +++ b/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/value/prefs/JptCommonUtilityModelValuePrefsTests.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2012 Oracle. All rights reserved. + * Copyright (c) 2007, 2016 Oracle. All rights reserved. * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0, which accompanies this distribution * and is available at http://www.eclipse.org/legal/epl-v10.html. @@ -12,10 +12,10 @@ package org.eclipse.jpt.common.utility.tests.internal.model.value.prefs; import junit.framework.Test; import junit.framework.TestSuite; -public class JptUtilityModelValuePrefsTests { +public class JptCommonUtilityModelValuePrefsTests { public static Test suite() { - TestSuite suite = new TestSuite(JptUtilityModelValuePrefsTests.class.getPackage().getName()); + TestSuite suite = new TestSuite(JptCommonUtilityModelValuePrefsTests.class.getPackage().getName()); suite.addTestSuite(PreferencesCollectionValueModelTests.class); suite.addTestSuite(PreferencePropertyValueModelTests.class); @@ -23,7 +23,7 @@ public class JptUtilityModelValuePrefsTests { return suite; } - private JptUtilityModelValuePrefsTests() { + private JptCommonUtilityModelValuePrefsTests() { super(); throw new UnsupportedOperationException(); } diff --git a/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/value/swing/JptUtilityModelValueSwingTests.java b/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/value/swing/JptCommonUtilityModelValueSwingTests.java index e0add6d31b..ef9f68bfca 100644 --- a/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/value/swing/JptUtilityModelValueSwingTests.java +++ b/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/value/swing/JptCommonUtilityModelValueSwingTests.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2012 Oracle. All rights reserved. + * Copyright (c) 2007, 2016 Oracle. All rights reserved. * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0, which accompanies this distribution * and is available at http://www.eclipse.org/legal/epl-v10.html. @@ -12,10 +12,10 @@ package org.eclipse.jpt.common.utility.tests.internal.model.value.swing; import junit.framework.Test; import junit.framework.TestSuite; -public class JptUtilityModelValueSwingTests { +public class JptCommonUtilityModelValueSwingTests { public static Test suite() { - TestSuite suite = new TestSuite(JptUtilityModelValueSwingTests.class.getPackage().getName()); + TestSuite suite = new TestSuite(JptCommonUtilityModelValueSwingTests.class.getPackage().getName()); suite.addTestSuite(CheckBoxModelAdapterTests.class); suite.addTestSuite(ComboBoxModelAdapterTests.class); @@ -34,7 +34,7 @@ public class JptUtilityModelValueSwingTests { return suite; } - private JptUtilityModelValueSwingTests() { + private JptCommonUtilityModelValueSwingTests() { super(); throw new UnsupportedOperationException(); } |