Return-Path: Delivered-To: apmail-tuscany-commits-archive@www.apache.org Received: (qmail 74034 invoked from network); 3 Dec 2010 08:12:24 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 3 Dec 2010 08:12:24 -0000 Received: (qmail 87578 invoked by uid 500); 3 Dec 2010 08:12:24 -0000 Delivered-To: apmail-tuscany-commits-archive@tuscany.apache.org Received: (qmail 87514 invoked by uid 500); 3 Dec 2010 08:12:23 -0000 Mailing-List: contact commits-help@tuscany.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tuscany.apache.org Delivered-To: mailing list commits@tuscany.apache.org Received: (qmail 87506 invoked by uid 99); 3 Dec 2010 08:12:23 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Dec 2010 08:12:23 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Dec 2010 08:12:22 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C752123888EA; Fri, 3 Dec 2010 08:10:50 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1041722 - in /tuscany/sca-java-2.x/trunk/samples/getting-started/helloworld-webapp: pom.xml src/test/java/itest/HelloworldTestCaseFIXME.java Date: Fri, 03 Dec 2010 08:10:50 -0000 To: commits@tuscany.apache.org From: antelder@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20101203081050.C752123888EA@eris.apache.org> Author: antelder Date: Fri Dec 3 08:10:50 2010 New Revision: 1041722 URL: http://svn.apache.org/viewvc?rev=1041722&view=rev Log: Disable web unit tests for now Modified: tuscany/sca-java-2.x/trunk/samples/getting-started/helloworld-webapp/pom.xml tuscany/sca-java-2.x/trunk/samples/getting-started/helloworld-webapp/src/test/java/itest/HelloworldTestCaseFIXME.java Modified: tuscany/sca-java-2.x/trunk/samples/getting-started/helloworld-webapp/pom.xml URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/samples/getting-started/helloworld-webapp/pom.xml?rev=1041722&r1=1041721&r2=1041722&view=diff ============================================================================== --- tuscany/sca-java-2.x/trunk/samples/getting-started/helloworld-webapp/pom.xml (original) +++ tuscany/sca-java-2.x/trunk/samples/getting-started/helloworld-webapp/pom.xml Fri Dec 3 08:10:50 2010 @@ -85,6 +85,7 @@ foo 9999 + Modified: tuscany/sca-java-2.x/trunk/samples/getting-started/helloworld-webapp/src/test/java/itest/HelloworldTestCaseFIXME.java URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/samples/getting-started/helloworld-webapp/src/test/java/itest/HelloworldTestCaseFIXME.java?rev=1041722&r1=1041721&r2=1041722&view=diff ============================================================================== --- tuscany/sca-java-2.x/trunk/samples/getting-started/helloworld-webapp/src/test/java/itest/HelloworldTestCaseFIXME.java (original) +++ tuscany/sca-java-2.x/trunk/samples/getting-started/helloworld-webapp/src/test/java/itest/HelloworldTestCaseFIXME.java Fri Dec 3 08:10:50 2010 @@ -36,9 +36,9 @@ public class HelloworldTestCaseFIXME { public void testHelloworld() throws NoSuchDomainException, NoSuchServiceException { // TODO: need to fix the config URI so it works properly // SCAClientFactory factory = SCAClientFactory.newInstance(URI.create("uri:default?remote=127.0.0.1:54321")); - SCAClientFactory factory = SCAClientFactory.newInstance(URI.create("tuscany:default?remotes=192.168.1.64")); - Helloworld helloworld = factory.getService(Helloworld.class, "HelloworldComponent"); - assertEquals("Hello World", helloworld.sayHello("World")); +// SCAClientFactory factory = SCAClientFactory.newInstance(URI.create("tuscany:default?remotes=192.168.1.64")); +// Helloworld helloworld = factory.getService(Helloworld.class, "HelloworldComponent"); +// assertEquals("Hello World", helloworld.sayHello("World")); } }