renamed the MultipleAnnotationTest class name to see if it fixes a weird Bamboo issue, where the MultipleAnnotationTest bundle can't be installed because of an unexpected "Unexpected end of ZLIB input stream" exception

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@926517 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/dependencymanager/test/src/test/java/org/apache/felix/dm/test/annotation/MultipleAnnotationTest.java b/dependencymanager/test/src/test/java/org/apache/felix/dm/test/annotation/MultipleAnnotationsTest.java
similarity index 95%
rename from dependencymanager/test/src/test/java/org/apache/felix/dm/test/annotation/MultipleAnnotationTest.java
rename to dependencymanager/test/src/test/java/org/apache/felix/dm/test/annotation/MultipleAnnotationsTest.java
index 6083851..411f21d 100644
--- a/dependencymanager/test/src/test/java/org/apache/felix/dm/test/annotation/MultipleAnnotationTest.java
+++ b/dependencymanager/test/src/test/java/org/apache/felix/dm/test/annotation/MultipleAnnotationsTest.java
@@ -38,7 +38,7 @@
  * Use case: Verify complex Annotation usage.
  */
 @RunWith(JUnit4TestRunner.class)
-public class MultipleAnnotationTest extends AnnotationBase
+public class MultipleAnnotationsTest extends AnnotationBase
 {
     @Configuration
     public static Option[] configuration()
@@ -51,7 +51,7 @@
                 mavenBundle().groupId("org.apache.felix").artifactId("org.apache.felix.dependencymanager.runtime").versionAsInProject()),
             provision(
                 new BundleGenerator()
-                    .set(Constants.BUNDLE_SYMBOLICNAME, "MultipleAnnotationTest")
+                    .set(Constants.BUNDLE_SYMBOLICNAME, "MultipleAnnotationsTest")
                     .set("Export-Package", "org.apache.felix.dm.test.bundle.annotation.sequencer")
                     .set("Private-Package", "org.apache.felix.dm.test.bundle.annotation.multiple")
                     .set("Import-Package", "*")
@@ -63,14 +63,14 @@
     public void testMultipleAnnotations(BundleContext context)
     {
         DependencyManager m = new DependencyManager(context);
-        // Provide the Sequencer service to the MultipleAnnotationTest class.
+        // Provide the Sequencer service to the MultipleAnnotationsTest class.
         m.add(m.createService()
             .setImplementation(this)
             .setInterface(Sequencer.class.getName(), null));
         // Check if the test.annotation components have been initialized orderly
         m_ensure.waitForStep(7, 10000);
         // Stop the test.annotation bundle
-        stopBundle("MultipleAnnotationTest", context);
+        stopBundle("MultipleAnnotationsTest", context);
         // And check if the test.annotation bundle has been deactivated orderly
         m_ensure.waitForStep(11, 10000);
     }