You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2010/03/22 14:29:50 UTC

svn commit: r926072 - in /tuscany/sca-java-2.x/trunk/samples/helloworld-spring/src/test/java/sample: ./ HelloworldTestCase.java

Author: antelder
Date: Mon Mar 22 13:29:50 2010
New Revision: 926072

URL: http://svn.apache.org/viewvc?rev=926072&view=rev
Log:
Add sample testcase

Added:
    tuscany/sca-java-2.x/trunk/samples/helloworld-spring/src/test/java/sample/
    tuscany/sca-java-2.x/trunk/samples/helloworld-spring/src/test/java/sample/HelloworldTestCase.java

Added: tuscany/sca-java-2.x/trunk/samples/helloworld-spring/src/test/java/sample/HelloworldTestCase.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/samples/helloworld-spring/src/test/java/sample/HelloworldTestCase.java?rev=926072&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/samples/helloworld-spring/src/test/java/sample/HelloworldTestCase.java (added)
+++ tuscany/sca-java-2.x/trunk/samples/helloworld-spring/src/test/java/sample/HelloworldTestCase.java Mon Mar 22 13:29:50 2010
@@ -0,0 +1,33 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.    
+ */
+package sample;
+
+import static org.junit.Assert.assertEquals;
+
+import org.junit.Test;
+
+public class HelloworldTestCase {
+
+    @Test
+    public void testSayHello() {
+        HelloworldImpl helloworld = new HelloworldImpl();
+        assertEquals("Hello Petra", helloworld.sayHello("Petra"));
+    }
+
+}