You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "John Wagenleitner (JIRA)" <ji...@apache.org> on 2016/10/07 05:06:20 UTC

[jira] [Updated] (GROOVY-7961) ObjectRange iterator returns null instead of NoSuchElementException

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

John Wagenleitner updated GROOVY-7961:
--------------------------------------
    Labels: breaking  (was: )

> ObjectRange iterator returns null instead of NoSuchElementException
> -------------------------------------------------------------------
>
>                 Key: GROOVY-7961
>                 URL: https://issues.apache.org/jira/browse/GROOVY-7961
>             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-beta-1
>
>
> Calling {{next()}} on an {{ObjectRange}} iterator returns {{null}} when {{hasNext{}}} returns false.  It should throw {{NoSuchElementException}} to adhere to the Iterator contract.
> {code}
> class ObjectRangeItrTest extends GroovyTestCase {
>     void testItr() {
>         def itr = ('a'..'b').iterator()        
>         assert itr.next() == 'a'
>         assert itr.next() == 'b'
>         assert !itr.hasNext() 
>         shouldFail(NoSuchElementException) {
>             println itr.next()
>         }
>     }
> }
> {code}



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