Author: simonetripodi
Date: Fri Jan 20 08:24:39 2012
New Revision: 1233807
URL: http://svn.apache.org/viewvc?rev=1233807&view=rev
Log:
renamed test methods signatures in a non-junit3 format
Modified:
commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2/ConstructorsTestCase.java
Modified:
commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2/ConstructorsTestCase.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2/ConstructorsTestCase.java?rev=1233807&r1=1233806&r2=1233807&view=diff
==============================================================================
---
commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2/ConstructorsTestCase.java
(original)
+++
commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2/ConstructorsTestCase.java
Fri Jan 20 08:24:39 2012
@@ -36,7 +36,7 @@ public class ConstructorsTestCase
// ------------------------------------------------ Individual Test Methods
@Test
- public void testInvokeConstructor()
+ public void invokeConstructor()
throws Exception
{
{
@@ -52,7 +52,7 @@ public class ConstructorsTestCase
}
@Test
- public void testInvokeConstructorWithArgArray()
+ public void invokeConstructorWithArgArray()
throws Exception
{
TestBean obj = on( TestBean.class ).invokeConstructor( argument( new
Float( 17.3f ) ), argument( "TEST" ) ).get();
@@ -62,7 +62,7 @@ public class ConstructorsTestCase
}
@Test
- public void testInvokeConstructorWithTypeArray()
+ public void invokeConstructorWithTypeArray()
throws Exception
{
{
@@ -82,7 +82,7 @@ public class ConstructorsTestCase
}
@Test
- public void testInvokeExactConstructor()
+ public void invokeExactConstructor()
throws Exception
{
{
@@ -110,7 +110,7 @@ public class ConstructorsTestCase
}
@Test
- public void testInvokeExactConstructorWithArgArray()
+ public void invokeExactConstructorWithArgArray()
throws Exception
{
{
@@ -135,7 +135,7 @@ public class ConstructorsTestCase
}
@Test
- public void testInvokeExactConstructorWithTypeArray()
+ public void invokeExactConstructorWithTypeArray()
throws Exception
{
{