[arquillian-issues] [JBoss JIRA] (ARQ-941) Make Exception.class default for value attribute on @ShouldThrowException

Aslak Knutsen (JIRA) jira-events at lists.jboss.org
Tue Jun 4 02:03:55 EDT 2013


     [ https://issues.jboss.org/browse/ARQ-941?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Aslak Knutsen closed ARQ-941.
-----------------------------


    
> Make Exception.class default for value attribute on @ShouldThrowException
> -------------------------------------------------------------------------
>
>                 Key: ARQ-941
>                 URL: https://issues.jboss.org/browse/ARQ-941
>             Project: Arquillian
>          Issue Type: Enhancement
>      Security Level: Public(Everyone can see) 
>          Components: Base Implementation
>            Reporter: Dan Allen
>            Priority: Minor
>              Labels: starter
>             Fix For: 1.0.4.Final
>
>
> The annotation @ShouldThrowException is expressive enough to be understood as meaning a generic Exception will be thrown (during deployment) unless a more specific exception is specified.
> Therefore, a default should be specified for the value attribute such that:
> @ShouldThrowException == @ShouldThrowException(Exception.class)
> Here's the resulting annotation definition:
> {code:java}
> @Documented
> @Retention(RUNTIME)
> @Target(ElementType.METHOD)
> public @interface ShouldThrowException {
>    Class<? extends Exception> value() default Exception.class;
> }
> {code}
> (Alternatively, the default can be Throwable.class, though the value of least surprise is likely Exception.class).

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the arquillian-issues mailing list