[ 
https://issues.apache.org/jira/browse/LUCENE-7009?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15131059#comment-15131059
 ] 

ASF subversion and git services commented on LUCENE-7009:
---------------------------------------------------------

Commit 732b8fb3b9d0e1a215c0f02b99a0c8847ecf7039 in lucene-solr's branch 
refs/heads/master from [~rjernst]
[ https://git-wip-us.apache.org/repos/asf?p=lucene-solr.git;h=732b8fb ]

LUCENE-7009: Add expectThrows utility to LuceneTestCase


> Add expectThrows utility to LuceneTestCase
> ------------------------------------------
>
>                 Key: LUCENE-7009
>                 URL: https://issues.apache.org/jira/browse/LUCENE-7009
>             Project: Lucene - Core
>          Issue Type: Bug
>            Reporter: Ryan Ernst
>         Attachments: LUCENE-7009.patch
>
>
> In junit5, a neat assertion method is added which makes testing expected
> failures a little more straightforward. The block of code that is
> expected to throw is passed in with a lambda expression, and the caught
> exception returned for inspection. The usage looks something like this:
> {code}
> IOException e = expectThrows(IOException.class, () -> {
>     throw new IOException("some io error");
> });
> // assert stuff here about the exception
> {code}
> We should add this to LuceneTestCase until junit5 is available.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org

Reply via email to