You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by ke...@apache.org on 2007/05/10 15:13:16 UTC

svn commit: r536858 - in /incubator/tuscany/sandbox/kgoodson/testRoot/play: ./ play/ play/src/ play/src/main/ play/src/main/java/ play/src/main/java/uk/ play/src/main/java/uk/org/ play/src/main/java/uk/org/thegoodsons/ play/src/test/ play/src/test/java...

Author: kelvingoodson
Date: Thu May 10 06:13:14 2007
New Revision: 536858

URL: http://svn.apache.org/viewvc?view=rev&rev=536858
Log:
preparing to test bulk package rearrangement

Added:
    incubator/tuscany/sandbox/kgoodson/testRoot/play/
    incubator/tuscany/sandbox/kgoodson/testRoot/play/play/
    incubator/tuscany/sandbox/kgoodson/testRoot/play/play/pom.xml   (with props)
    incubator/tuscany/sandbox/kgoodson/testRoot/play/play/src/
    incubator/tuscany/sandbox/kgoodson/testRoot/play/play/src/main/
    incubator/tuscany/sandbox/kgoodson/testRoot/play/play/src/main/java/
    incubator/tuscany/sandbox/kgoodson/testRoot/play/play/src/main/java/uk/
    incubator/tuscany/sandbox/kgoodson/testRoot/play/play/src/main/java/uk/org/
    incubator/tuscany/sandbox/kgoodson/testRoot/play/play/src/main/java/uk/org/thegoodsons/
    incubator/tuscany/sandbox/kgoodson/testRoot/play/play/src/main/java/uk/org/thegoodsons/App.java   (with props)
    incubator/tuscany/sandbox/kgoodson/testRoot/play/play/src/test/
    incubator/tuscany/sandbox/kgoodson/testRoot/play/play/src/test/java/
    incubator/tuscany/sandbox/kgoodson/testRoot/play/play/src/test/java/uk/
    incubator/tuscany/sandbox/kgoodson/testRoot/play/play/src/test/java/uk/org/
    incubator/tuscany/sandbox/kgoodson/testRoot/play/play/src/test/java/uk/org/thegoodsons/
    incubator/tuscany/sandbox/kgoodson/testRoot/play/play/src/test/java/uk/org/thegoodsons/AppTest.java   (with props)

Added: incubator/tuscany/sandbox/kgoodson/testRoot/play/play/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/sandbox/kgoodson/testRoot/play/play/pom.xml?view=auto&rev=536858
==============================================================================
--- incubator/tuscany/sandbox/kgoodson/testRoot/play/play/pom.xml (added)
+++ incubator/tuscany/sandbox/kgoodson/testRoot/play/play/pom.xml Thu May 10 06:13:14 2007
@@ -0,0 +1,18 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>uk.org.thegoodsons</groupId>
+  <artifactId>play</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0-SNAPSHOT</version>
+  <name>play</name>
+  <url>http://maven.apache.org</url>
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>

Propchange: incubator/tuscany/sandbox/kgoodson/testRoot/play/play/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/sandbox/kgoodson/testRoot/play/play/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/tuscany/sandbox/kgoodson/testRoot/play/play/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: incubator/tuscany/sandbox/kgoodson/testRoot/play/play/src/main/java/uk/org/thegoodsons/App.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/sandbox/kgoodson/testRoot/play/play/src/main/java/uk/org/thegoodsons/App.java?view=auto&rev=536858
==============================================================================
--- incubator/tuscany/sandbox/kgoodson/testRoot/play/play/src/main/java/uk/org/thegoodsons/App.java (added)
+++ incubator/tuscany/sandbox/kgoodson/testRoot/play/play/src/main/java/uk/org/thegoodsons/App.java Thu May 10 06:13:14 2007
@@ -0,0 +1,13 @@
+package uk.org.thegoodsons;
+
+/**
+ * Hello world!
+ *
+ */
+public class App 
+{
+    public static void main( String[] args )
+    {
+        System.out.println( "Hello World!" );
+    }
+}

Propchange: incubator/tuscany/sandbox/kgoodson/testRoot/play/play/src/main/java/uk/org/thegoodsons/App.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/sandbox/kgoodson/testRoot/play/play/src/main/java/uk/org/thegoodsons/App.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/sandbox/kgoodson/testRoot/play/play/src/test/java/uk/org/thegoodsons/AppTest.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/sandbox/kgoodson/testRoot/play/play/src/test/java/uk/org/thegoodsons/AppTest.java?view=auto&rev=536858
==============================================================================
--- incubator/tuscany/sandbox/kgoodson/testRoot/play/play/src/test/java/uk/org/thegoodsons/AppTest.java (added)
+++ incubator/tuscany/sandbox/kgoodson/testRoot/play/play/src/test/java/uk/org/thegoodsons/AppTest.java Thu May 10 06:13:14 2007
@@ -0,0 +1,38 @@
+package uk.org.thegoodsons;
+
+import junit.framework.Test;
+import junit.framework.TestCase;
+import junit.framework.TestSuite;
+
+/**
+ * Unit test for simple App.
+ */
+public class AppTest 
+    extends TestCase
+{
+    /**
+     * Create the test case
+     *
+     * @param testName name of the test case
+     */
+    public AppTest( String testName )
+    {
+        super( testName );
+    }
+
+    /**
+     * @return the suite of tests being tested
+     */
+    public static Test suite()
+    {
+        return new TestSuite( AppTest.class );
+    }
+
+    /**
+     * Rigourous Test :-)
+     */
+    public void testApp()
+    {
+        assertTrue( true );
+    }
+}

Propchange: incubator/tuscany/sandbox/kgoodson/testRoot/play/play/src/test/java/uk/org/thegoodsons/AppTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/sandbox/kgoodson/testRoot/play/play/src/test/java/uk/org/thegoodsons/AppTest.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date



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