You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Paul King (JIRA)" <ji...@apache.org> on 2017/05/02 02:03:06 UTC

[jira] [Closed] (GROOVY-7960) IntRange iterator returns null instead of NoSuchElementException

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

Paul King closed GROOVY-7960.
-----------------------------

> IntRange iterator returns null instead of NoSuchElementException
> ----------------------------------------------------------------
>
>                 Key: GROOVY-7960
>                 URL: https://issues.apache.org/jira/browse/GROOVY-7960
>             Project: Groovy
>          Issue Type: Bug
>    Affects Versions: 2.4.7
>            Reporter: John Wagenleitner
>            Assignee: John Wagenleitner
>            Priority: Minor
>              Labels: breaking
>             Fix For: 2.5.0-alpha-1
>
>
> Calling {{next()}} on an {{IntRange}} iterator returns {{null}} when {{hasNext{}}} returns false.  As stated in a comment in the class, it should throw {{NoSuchElementException}} to adhere to the Iterator contract.
> {code}
> class IntRangeItrTest extends GroovyTestCase {
>     void testItr() {
>         def itr = (1..2).iterator()        
>         assert itr.next() == 1
>         assert itr.next() == 2
>         assert !itr.hasNext()        
>         shouldFail(NoSuchElementException) {
>             itr.next() // null
>         }
>     }
> }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)