Author: davidb
Date: Wed Jan 28 09:38:54 2009
New Revision: 738417
URL: http://svn.apache.org/viewvc?rev=738417&view=rev
Log:
Renamed some system test classes.
Added:
cxf/sandbox/dosgi/systests/basic/src/test/java/org/apache/cxf/dosgi/systests/basic/MultiBundleDistributionResolver.java
(contents, props changed)
- copied, changed from r738411,
cxf/sandbox/dosgi/systests/basic/src/test/java/org/apache/cxf/dosgi/systests/basic/DependencyResolver.java
cxf/sandbox/dosgi/systests/single_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/singlebundle/SingleBundleDistributionResolver.java
(contents, props changed)
- copied, changed from r738411,
cxf/sandbox/dosgi/systests/single_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/singlebundle/DependencyResolver.java
Removed:
cxf/sandbox/dosgi/systests/basic/src/test/java/org/apache/cxf/dosgi/systests/basic/DependencyResolver.java
cxf/sandbox/dosgi/systests/single_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/singlebundle/DependencyResolver.java
Modified:
cxf/sandbox/dosgi/systests/basic/src/test/java/org/apache/cxf/dosgi/systests/basic/BasicPublishHookTest.java
cxf/sandbox/dosgi/systests/basic/src/test/java/org/apache/cxf/dosgi/systests/basic/ListenerHookServiceListenerTest.java
cxf/sandbox/dosgi/systests/single_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/singlebundle/BasicPublishHookTest.java
cxf/sandbox/dosgi/systests/single_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/singlebundle/ListenerHookServiceListenerTest.java
Modified:
cxf/sandbox/dosgi/systests/basic/src/test/java/org/apache/cxf/dosgi/systests/basic/BasicPublishHookTest.java
URL:
http://svn.apache.org/viewvc/cxf/sandbox/dosgi/systests/basic/src/test/java/org/apache/cxf/dosgi/systests/basic/BasicPublishHookTest.java?rev=738417&r1=738416&r2=738417&view=diff
==============================================================================
---
cxf/sandbox/dosgi/systests/basic/src/test/java/org/apache/cxf/dosgi/systests/basic/BasicPublishHookTest.java
(original)
+++
cxf/sandbox/dosgi/systests/basic/src/test/java/org/apache/cxf/dosgi/systests/basic/BasicPublishHookTest.java
Wed Jan 28 09:38:54 2009
@@ -23,6 +23,6 @@
public class BasicPublishHookTest extends AbstractBasicPublishHookTest {
protected Dependency [] getDistributionBundles() {
- return DependencyResolver.getDistribution();
+ return MultiBundleDistributionResolver.getDistribution();
}
}
Modified:
cxf/sandbox/dosgi/systests/basic/src/test/java/org/apache/cxf/dosgi/systests/basic/ListenerHookServiceListenerTest.java
URL:
http://svn.apache.org/viewvc/cxf/sandbox/dosgi/systests/basic/src/test/java/org/apache/cxf/dosgi/systests/basic/ListenerHookServiceListenerTest.java?rev=738417&r1=738416&r2=738417&view=diff
==============================================================================
---
cxf/sandbox/dosgi/systests/basic/src/test/java/org/apache/cxf/dosgi/systests/basic/ListenerHookServiceListenerTest.java
(original)
+++
cxf/sandbox/dosgi/systests/basic/src/test/java/org/apache/cxf/dosgi/systests/basic/ListenerHookServiceListenerTest.java
Wed Jan 28 09:38:54 2009
@@ -23,6 +23,6 @@
public class ListenerHookServiceListenerTest extends
AbstractListenerHookServiceListenerTest {
protected Dependency [] getDistributionBundles() {
- return DependencyResolver.getDistribution();
+ return MultiBundleDistributionResolver.getDistribution();
}
}
Copied:
cxf/sandbox/dosgi/systests/basic/src/test/java/org/apache/cxf/dosgi/systests/basic/MultiBundleDistributionResolver.java
(from r738411,
cxf/sandbox/dosgi/systests/basic/src/test/java/org/apache/cxf/dosgi/systests/basic/DependencyResolver.java)
URL:
http://svn.apache.org/viewvc/cxf/sandbox/dosgi/systests/basic/src/test/java/org/apache/cxf/dosgi/systests/basic/MultiBundleDistributionResolver.java?p2=cxf/sandbox/dosgi/systests/basic/src/test/java/org/apache/cxf/dosgi/systests/basic/MultiBundleDistributionResolver.java&p1=cxf/sandbox/dosgi/systests/basic/src/test/java/org/apache/cxf/dosgi/systests/basic/DependencyResolver.java&r1=738411&r2=738417&rev=738417&view=diff
==============================================================================
---
cxf/sandbox/dosgi/systests/basic/src/test/java/org/apache/cxf/dosgi/systests/basic/DependencyResolver.java
(original)
+++
cxf/sandbox/dosgi/systests/basic/src/test/java/org/apache/cxf/dosgi/systests/basic/MultiBundleDistributionResolver.java
Wed Jan 28 09:38:54 2009
@@ -20,8 +20,8 @@
import org.apache.cxf.dosgi.systests.common.Dependency;
-class DependencyResolver {
- private DependencyResolver() {}
+class MultiBundleDistributionResolver {
+ private MultiBundleDistributionResolver() {}
static Dependency [] getDistribution() {
return new Dependency [] {
Propchange:
cxf/sandbox/dosgi/systests/basic/src/test/java/org/apache/cxf/dosgi/systests/basic/MultiBundleDistributionResolver.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
cxf/sandbox/dosgi/systests/basic/src/test/java/org/apache/cxf/dosgi/systests/basic/MultiBundleDistributionResolver.java
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange:
cxf/sandbox/dosgi/systests/basic/src/test/java/org/apache/cxf/dosgi/systests/basic/MultiBundleDistributionResolver.java
------------------------------------------------------------------------------
svn:mergeinfo =
Modified:
cxf/sandbox/dosgi/systests/single_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/singlebundle/BasicPublishHookTest.java
URL:
http://svn.apache.org/viewvc/cxf/sandbox/dosgi/systests/single_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/singlebundle/BasicPublishHookTest.java?rev=738417&r1=738416&r2=738417&view=diff
==============================================================================
---
cxf/sandbox/dosgi/systests/single_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/singlebundle/BasicPublishHookTest.java
(original)
+++
cxf/sandbox/dosgi/systests/single_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/singlebundle/BasicPublishHookTest.java
Wed Jan 28 09:38:54 2009
@@ -23,6 +23,6 @@
public class BasicPublishHookTest extends AbstractBasicPublishHookTest {
protected Dependency [] getDistributionBundles() {
- return DependencyResolver.getDistribution();
+ return SingleBundleDistributionResolver.getDistribution();
}
}
Modified:
cxf/sandbox/dosgi/systests/single_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/singlebundle/ListenerHookServiceListenerTest.java
URL:
http://svn.apache.org/viewvc/cxf/sandbox/dosgi/systests/single_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/singlebundle/ListenerHookServiceListenerTest.java?rev=738417&r1=738416&r2=738417&view=diff
==============================================================================
---
cxf/sandbox/dosgi/systests/single_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/singlebundle/ListenerHookServiceListenerTest.java
(original)
+++
cxf/sandbox/dosgi/systests/single_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/singlebundle/ListenerHookServiceListenerTest.java
Wed Jan 28 09:38:54 2009
@@ -23,6 +23,6 @@
public class ListenerHookServiceListenerTest extends
AbstractListenerHookServiceListenerTest {
protected Dependency [] getDistributionBundles() {
- return DependencyResolver.getDistribution();
+ return SingleBundleDistributionResolver.getDistribution();
}
}
Copied:
cxf/sandbox/dosgi/systests/single_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/singlebundle/SingleBundleDistributionResolver.java
(from r738411,
cxf/sandbox/dosgi/systests/single_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/singlebundle/DependencyResolver.java)
URL:
http://svn.apache.org/viewvc/cxf/sandbox/dosgi/systests/single_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/singlebundle/SingleBundleDistributionResolver.java?p2=cxf/sandbox/dosgi/systests/single_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/singlebundle/SingleBundleDistributionResolver.java&p1=cxf/sandbox/dosgi/systests/single_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/singlebundle/DependencyResolver.java&r1=738411&r2=738417&rev=738417&view=diff
==============================================================================
---
cxf/sandbox/dosgi/systests/single_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/singlebundle/DependencyResolver.java
(original)
+++
cxf/sandbox/dosgi/systests/single_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/singlebundle/SingleBundleDistributionResolver.java
Wed Jan 28 09:38:54 2009
@@ -20,8 +20,8 @@
import org.apache.cxf.dosgi.systests.common.Dependency;
-class DependencyResolver {
- private DependencyResolver() {}
+class SingleBundleDistributionResolver {
+ private SingleBundleDistributionResolver() {}
static Dependency [] getDistribution() {
return new Dependency [] {
Propchange:
cxf/sandbox/dosgi/systests/single_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/singlebundle/SingleBundleDistributionResolver.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
cxf/sandbox/dosgi/systests/single_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/singlebundle/SingleBundleDistributionResolver.java
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange:
cxf/sandbox/dosgi/systests/single_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/singlebundle/SingleBundleDistributionResolver.java
------------------------------------------------------------------------------
svn:mergeinfo =