Title: [waffle-scm] [725] trunk: Upgraded to paranamer 1.1.3 to fix the failing method definition finder tests.
Revision
725
Author
mauro
Date
2008-06-17 10:28:26 -0500 (Tue, 17 Jun 2008)

Log Message

Upgraded to paranamer 1.1.3 to fix the failing method definition finder tests.

Modified Paths

Diff

Modified: trunk/pom.xml (724 => 725)

--- trunk/pom.xml	2008-06-17 15:21:59 UTC (rev 724)
+++ trunk/pom.xml	2008-06-17 15:28:26 UTC (rev 725)
@@ -57,7 +57,7 @@
       <dependency>
         <groupId>com.thoughtworks.paranamer</groupId>
         <artifactId>paranamer</artifactId>
-        <version>1.1</version>
+        <version>1.1.3</version>
         <scope>provided</scope>
       </dependency>
       <dependency>
@@ -119,7 +119,7 @@
         <plugin>
           <groupId>com.thoughtworks.paranamer</groupId>
           <artifactId>paranamer-maven-plugin</artifactId>
-          <version>1.1</version>
+          <version>1.1.3</version>
         </plugin>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>

Modified: trunk/waffle-core/src/test/java/org/codehaus/waffle/action/ParanamerMethodDefinitionFinderTest.java (724 => 725)

--- trunk/waffle-core/src/test/java/org/codehaus/waffle/action/ParanamerMethodDefinitionFinderTest.java	2008-06-17 15:21:59 UTC (rev 724)
+++ trunk/waffle-core/src/test/java/org/codehaus/waffle/action/ParanamerMethodDefinitionFinderTest.java	2008-06-17 15:28:26 UTC (rev 725)
@@ -36,7 +36,7 @@
                 stringTransmuter, new SilentMonitor());
     }
 
-    //[EMAIL PROTECTED]
+    @Test
     public void canFindMethodWhenParameterAssignable() throws Exception {
         // Mock HttpServletRequest
         final HttpServletRequest request = mockery.mock(HttpServletRequest.class);
@@ -74,7 +74,7 @@
         assertEquals(expectedMethod, methodDefinition.getMethod());
     }
 
-    // [EMAIL PROTECTED](expected = AmbiguousActionSignatureMethodException.class)
+    @Test(expected = AmbiguousActionSignatureMethodException.class)
     public void cannotAllowAmbiguity() throws Exception {
         // Mock HttpServletRequest
         final HttpServletRequest request = mockery.mock(HttpServletRequest.class);
@@ -146,7 +146,6 @@
                 will(returnValue(Collections.EMPTY_LIST));
             }
         });
-        // new OgnlValueConverterFinder(new OgnlValueConverter(typeConverter))
 
         FakeControllerWithMethodDefinitions controller = new FakeControllerWithMethodDefinitions();
         MethodDefinitionFinder methodDefinitionFinder = newMethodDefinitionFinder(null, argumentResolver,


To unsubscribe from this list please visit:

http://xircles.codehaus.org/manage_email

Reply via email to