You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wink.apache.org by bl...@apache.org on 2009/07/19 05:08:51 UTC

svn commit: r795468 - /incubator/wink/trunk/wink-integration-test/wink-server-integration-test/wink-jaxrs-test-validation/src/test/java/org/apache/wink/jaxrs/test/constructors/ConstructorTest.java

Author: bluk
Date: Sun Jul 19 03:08:51 2009
New Revision: 795468

URL: http://svn.apache.org/viewvc?rev=795468&view=rev
Log:
Fix wrong import in integration-test

Modified:
    incubator/wink/trunk/wink-integration-test/wink-server-integration-test/wink-jaxrs-test-validation/src/test/java/org/apache/wink/jaxrs/test/constructors/ConstructorTest.java

Modified: incubator/wink/trunk/wink-integration-test/wink-server-integration-test/wink-jaxrs-test-validation/src/test/java/org/apache/wink/jaxrs/test/constructors/ConstructorTest.java
URL: http://svn.apache.org/viewvc/incubator/wink/trunk/wink-integration-test/wink-server-integration-test/wink-jaxrs-test-validation/src/test/java/org/apache/wink/jaxrs/test/constructors/ConstructorTest.java?rev=795468&r1=795467&r2=795468&view=diff
==============================================================================
--- incubator/wink/trunk/wink-integration-test/wink-server-integration-test/wink-jaxrs-test-validation/src/test/java/org/apache/wink/jaxrs/test/constructors/ConstructorTest.java (original)
+++ incubator/wink/trunk/wink-integration-test/wink-server-integration-test/wink-jaxrs-test-validation/src/test/java/org/apache/wink/jaxrs/test/constructors/ConstructorTest.java Sun Jul 19 03:08:51 2009
@@ -21,8 +21,6 @@
 
 import java.io.IOException;
 
-import javax.xml.ws.http.HTTPException;
-
 import junit.framework.TestCase;
 
 import org.apache.commons.httpclient.HttpClient;
@@ -46,7 +44,7 @@
      * @throws IOException
      * @throws HTTPException
      */
-    public void testConstructorWithMostParams() throws IOException, HTTPException {
+    public void testConstructorWithMostParams() throws IOException {
         HttpClient client = new HttpClient();
 
         GetMethod getMethod = new GetMethod(getBaseURI() + "/constructors/multi");
@@ -67,7 +65,7 @@
      * @throws IOException
      * @throws HTTPException
      */
-    public void testConstructorWithMostParams2() throws IOException, HTTPException {
+    public void testConstructorWithMostParams2() throws IOException {
         HttpClient client = new HttpClient();
 
         GetMethod getMethod = new GetMethod(getBaseURI() + "/constructors/multi2/somepath");
@@ -88,7 +86,7 @@
      * @throws IOException
      * @throws HTTPException
      */
-    public void testConstructorWithSameParamWarning() throws IOException, HTTPException {
+    public void testConstructorWithSameParamWarning() throws IOException {
         HttpClient client = new HttpClient();
 
         GetMethod getMethod = new GetMethod(getBaseURI() + "/constructors/samenumparam");
@@ -116,7 +114,7 @@
      * @throws IOException
      * @throws HTTPException
      */
-    public void testConstructorWithSameParamWarning2() throws IOException, HTTPException {
+    public void testConstructorWithSameParamWarning2() throws IOException {
         HttpClient client = new HttpClient();
 
         GetMethod getMethod = new GetMethod(getBaseURI() + "/constructors/samenumparam2?q=15");
@@ -142,7 +140,7 @@
      * @throws IOException
      * @throws HTTPException
      */
-    public void testSubResourceLocatorPackageEmptyConstructor() throws IOException, HTTPException {
+    public void testSubResourceLocatorPackageEmptyConstructor() throws IOException {
         HttpClient client = new HttpClient();
 
         GetMethod getMethod =
@@ -163,7 +161,7 @@
      * @throws IOException
      * @throws HTTPException
      */
-    public void testSubResourceLocatorPackageStringConstructor() throws IOException, HTTPException {
+    public void testSubResourceLocatorPackageStringConstructor() throws IOException {
         HttpClient client = new HttpClient();
 
         GetMethod getMethod =
@@ -183,7 +181,7 @@
      * @throws IOException
      * @throws HTTPException
      */
-    public void testSubResourceLocatorPublicDefaultConstructor() throws IOException, HTTPException {
+    public void testSubResourceLocatorPublicDefaultConstructor() throws IOException {
         HttpClient client = new HttpClient();
 
         GetMethod getMethod = new GetMethod(getBaseURI() + "/constructors/subresource/emptypublic");
@@ -203,7 +201,7 @@
      * @throws IOException
      * @throws HTTPException
      */
-    public void testSubResourceLocatorPublicStringConstructor() throws IOException, HTTPException {
+    public void testSubResourceLocatorPublicStringConstructor() throws IOException {
         HttpClient client = new HttpClient();
 
         GetMethod getMethod =
@@ -223,7 +221,7 @@
      * @throws IOException
      * @throws HTTPException
      */
-    public void testSubResourceLocatorPrivateDefaultConstructor() throws IOException, HTTPException {
+    public void testSubResourceLocatorPrivateDefaultConstructor() throws IOException {
         HttpClient client = new HttpClient();
 
         GetMethod getMethod = new GetMethod(getBaseURI() + "/constructors/subresource/emptyprivate");
@@ -243,7 +241,7 @@
      * @throws IOException
      * @throws HTTPException
      */
-    public void testSubResourceLocatorPrivateStringConstructor() throws IOException, HTTPException {
+    public void testSubResourceLocatorPrivateStringConstructor() throws IOException {
         HttpClient client = new HttpClient();
 
         GetMethod getMethod =
@@ -263,7 +261,7 @@
      * @throws IOException
      * @throws HTTPException
      */
-    public void testSubResourceOtherSubPublicToPackage() throws IOException, HTTPException {
+    public void testSubResourceOtherSubPublicToPackage() throws IOException {
         HttpClient client = new HttpClient();
 
         GetMethod getMethod =
@@ -283,7 +281,7 @@
      * @throws IOException
      * @throws HTTPException
      */
-    public void testSubResourceOtherSubPackageToPublic() throws IOException, HTTPException {
+    public void testSubResourceOtherSubPackageToPublic() throws IOException {
         HttpClient client = new HttpClient();
 
         GetMethod getMethod =
@@ -303,7 +301,7 @@
      * @throws IOException
      * @throws HTTPException
      */
-    public void testSubResourceDecideSubDynamic() throws IOException, HTTPException {
+    public void testSubResourceDecideSubDynamic() throws IOException {
         HttpClient client = new HttpClient();
 
         GetMethod getMethod =