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/05 18:53:20 UTC

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

John Wagenleitner created GROOVY-7960:
-----------------------------------------

             Summary: 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


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}

See PR# 412
https://github.com/apache/groovy/pull/412



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