You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by rf...@apache.org on 2007/01/09 00:24:19 UTC

svn commit: r494247 - in /incubator/tuscany/java/testing/sca: itest/propertyTest/ itest/propertyTest/pom.xml itest/specTest/ itest/specTest/pom.xml itest/specTest/src/main/resources/META-INF/sca/myListService.scdl itest/test-spec/ pom.xml

Author: rfeng
Date: Mon Jan  8 15:24:18 2007
New Revision: 494247

URL: http://svn.apache.org/viewvc?view=rev&rev=494247
Log:
Clean up test cases

Added:
    incubator/tuscany/java/testing/sca/itest/specTest/
      - copied from r494092, incubator/tuscany/java/testing/sca/itest/test-spec/
Removed:
    incubator/tuscany/java/testing/sca/itest/test-spec/
Modified:
    incubator/tuscany/java/testing/sca/itest/propertyTest/   (props changed)
    incubator/tuscany/java/testing/sca/itest/propertyTest/pom.xml
    incubator/tuscany/java/testing/sca/itest/specTest/pom.xml
    incubator/tuscany/java/testing/sca/itest/specTest/src/main/resources/META-INF/sca/myListService.scdl
    incubator/tuscany/java/testing/sca/pom.xml

Propchange: incubator/tuscany/java/testing/sca/itest/propertyTest/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Mon Jan  8 15:24:18 2007
@@ -0,0 +1,13 @@
+target
+*.iws
+*.ipr
+*.iml
+.project
+.classpath
+maven.log
+velocity.log*
+junit*.properties
+surefire*.properties
+.settings
+.deployables
+.wtpmodules

Modified: incubator/tuscany/java/testing/sca/itest/propertyTest/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/testing/sca/itest/propertyTest/pom.xml?view=diff&rev=494247&r1=494246&r2=494247
==============================================================================
--- incubator/tuscany/java/testing/sca/itest/propertyTest/pom.xml (original)
+++ incubator/tuscany/java/testing/sca/itest/propertyTest/pom.xml Mon Jan  8 15:24:18 2007
@@ -1,72 +1,79 @@
-<project>
-    <modelVersion>4.0.0</modelVersion>
-    <groupId>org.apache.tuscany.testing</groupId>
-    <artifactId>propertyTest</artifactId>
-    <version>SNAPSHOT</version>
-    <packaging>jar</packaging>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.osoa</groupId>
-            <artifactId>sca-api-r0.95</artifactId>
-            <version>1.0-incubator-M2</version>
-        </dependency>
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>3.8.1</version>
-            <scope>test</scope>
-        </dependency>
-    </dependencies>
-    <build>
-        <defaultGoal>install</defaultGoal>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-compiler-plugin</artifactId>
-                <configuration>
-                    <source>1.5</source>
-                    <target>1.5</target>
-                </configuration>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.tuscany.sca.plugins</groupId>
-                <artifactId>tuscany-itest-plugin</artifactId>
-                <executions>
-                    <execution>
-                        <id>start</id>
-                        <goals>
-                            <goal>start</goal>
-                        </goals>
-                    </execution>
-                    <execution>
-                        <id>test</id>
-                        <goals>
-                            <goal>test</goal>
-                        </goals>
-                        <configuration>
-                            <includes>
-                                <include>**/*ITest.java</include>
-                            </includes>
-                        </configuration>
-                    </execution>
-                    <execution>
-                        <id>stop</id>
-                        <goals>
-                            <goal>stop</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-surefire-plugin</artifactId>
-                <configuration>
-                    <excludes>
-                        <exclude>**/*ITest.java</exclude>
-                    </excludes>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
+<project>
+    <parent>
+        <groupId>org.apache.tuscany.testing</groupId>
+        <artifactId>tuscany-testing-sca</artifactId>
+        <version>1.0-incubator-SNAPSHOT</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.tuscany.testing</groupId>
+    <artifactId>propertyTest</artifactId>
+    <version>SNAPSHOT</version>
+    <packaging>jar</packaging>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.osoa</groupId>
+            <artifactId>sca-api-r0.95</artifactId>
+            <version>1.0-incubator-M2</version>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>3.8.1</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+    <build>
+        <defaultGoal>install</defaultGoal>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>1.5</source>
+                    <target>1.5</target>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.tuscany.sca.plugins</groupId>
+                <artifactId>tuscany-itest-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>start</id>
+                        <goals>
+                            <goal>start</goal>
+                        </goals>
+                    </execution>
+                    <execution>
+                        <id>test</id>
+                        <goals>
+                            <goal>test</goal>
+                        </goals>
+                        <configuration>
+                            <includes>
+                                <include>**/*ITest.java</include>
+                            </includes>
+                        </configuration>
+                    </execution>
+                    <execution>
+                        <id>stop</id>
+                        <goals>
+                            <goal>stop</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>**/*ITest.java</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 </project>

Modified: incubator/tuscany/java/testing/sca/itest/specTest/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/testing/sca/itest/specTest/pom.xml?view=diff&rev=494247&r1=494092&r2=494247
==============================================================================
--- incubator/tuscany/java/testing/sca/itest/specTest/pom.xml (original)
+++ incubator/tuscany/java/testing/sca/itest/specTest/pom.xml Mon Jan  8 15:24:18 2007
@@ -3,9 +3,10 @@
         <groupId>org.apache.tuscany.testing</groupId>
         <artifactId>tuscany-testing-sca</artifactId>
         <version>1.0-incubator-SNAPSHOT</version>
+        <relativePath>../../pom.xml</relativePath>
     </parent>
     <modelVersion>4.0.0</modelVersion>
-    <artifactId>tuscany-test-spec</artifactId>
+    <artifactId>specTest</artifactId>
     <version>SNAPSHOT</version>
     <packaging>jar</packaging>
 

Modified: incubator/tuscany/java/testing/sca/itest/specTest/src/main/resources/META-INF/sca/myListService.scdl
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/testing/sca/itest/specTest/src/main/resources/META-INF/sca/myListService.scdl?view=diff&rev=494247&r1=494092&r2=494247
==============================================================================
--- incubator/tuscany/java/testing/sca/itest/specTest/src/main/resources/META-INF/sca/myListService.scdl (original)
+++ incubator/tuscany/java/testing/sca/itest/specTest/src/main/resources/META-INF/sca/myListService.scdl Mon Jan  8 15:24:18 2007
@@ -23,8 +23,8 @@
    
     <component name="MyNewListService">
         <implementation.java class="org.apache.tuscany.sca.test.spec.impl.MyListServiceImpl"/>
-		<!--reference name="myListServiceList">MyNCService/MyListService</reference-->
-		<!--reference name="myListServiceArray">MyListServiceFor2006/MyListService</reference-->
+		<reference name="myListServiceList">MyNCService/MyListService</reference>
+		<reference name="myListServiceArray">MyListServiceFor2006/MyListService</reference>
 		<property name="serviceYear">2007</property>
     </component>
     

Modified: incubator/tuscany/java/testing/sca/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/testing/sca/pom.xml?view=diff&rev=494247&r1=494246&r2=494247
==============================================================================
--- incubator/tuscany/java/testing/sca/pom.xml (original)
+++ incubator/tuscany/java/testing/sca/pom.xml Mon Jan  8 15:24:18 2007
@@ -36,7 +36,8 @@
     </properties>
 
     <modules>
-        <module>itest/test-spec</module>
+        <module>itest/specTest</module>
+        <module>itest/propertyTest</module>
 <!--
         <module>interop</module>
 -->



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org