cvs commit: spice/sandbox/metaclass/src/test/org/realityforge/metaclass/model MethodDescriptorTestCase.java
Peter Donald <[email protected]>
| Newsgroups | gmane.comp.java.spice.cvs |
|---|---|
| Message-ID | <[email protected]> |
donaldp 03/10/28 05:40:54
Modified: sandbox/metaclass/src/test/org/realityforge/metaclass/model
MethodDescriptorTestCase.java
Log:
Push through declared attributes in MethodDescriptor
Revision Changes Path
1.2 +5 -1 spice/sandbox/metaclass/src/test/org/realityforge/metaclass/model/MethodDescriptorTestCase.java
Index: MethodDescriptorTestCase.java
===================================================================
RCS file: /cvsroot/spice/spice/sandbox/metaclass/src/test/org/realityforge/metaclass/model/MethodDescriptorTestCase.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- MethodDescriptorTestCase.java 28 Oct 2003 11:50:18 -0000 1.1
+++ MethodDescriptorTestCase.java 28 Oct 2003 13:40:54 -0000 1.2
@@ -12,7 +12,7 @@
/**
*
* @author <a href="mailto:peter at realityforge.org">Peter Donald</a>
- * @version $Revision: 1.1 $ $Date: 2003/10/28 11:50:18 $
+ * @version $Revision: 1.2 $ $Date: 2003/10/28 13:40:54 $
*/
public class MethodDescriptorTestCase
extends TestCase
@@ -25,6 +25,7 @@
new MethodDescriptor( null,
"int",
ParameterDescriptor.EMPTY_SET,
+ Attribute.EMPTY_SET,
Attribute.EMPTY_SET );
}
catch( final NullPointerException npe )
@@ -43,6 +44,7 @@
new MethodDescriptor( "doMagic",
null,
ParameterDescriptor.EMPTY_SET,
+ Attribute.EMPTY_SET,
Attribute.EMPTY_SET );
}
catch( final NullPointerException npe )
@@ -61,6 +63,7 @@
new MethodDescriptor( "doMagic",
"int",
null,
+ Attribute.EMPTY_SET,
Attribute.EMPTY_SET );
}
catch( final NullPointerException npe )
@@ -79,6 +82,7 @@
new MethodDescriptor( "doMagic",
"int",
new ParameterDescriptor[]{null},
+ Attribute.EMPTY_SET,
Attribute.EMPTY_SET );
}
catch( final NullPointerException npe )
-------------------------------------------------------
This SF.net email is sponsored by: The SF.net Donation Program.
Do you like what SourceForge.net is doing for the Open
Source Community? Make a contribution, and help us add new
features and functionality. Click here: http://sourceforge.net/donate/