You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Ryan Ernst (JIRA)" <ji...@apache.org> on 2016/02/03 07:51:39 UTC

[jira] [Updated] (LUCENE-7009) Add expectThrows utility to LuceneTestCase

     [ https://issues.apache.org/jira/browse/LUCENE-7009?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ryan Ernst updated LUCENE-7009:
-------------------------------
    Attachment: LUCENE-7009.patch

Patch.

> 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-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org