Code Duplication    Length = 7-8 lines in 3 locations

Tests/Units/Quantifier/AllTests.php 2 locations

@@ 33-40 (lines=8) @@
30
    /**
31
     * {@inheritdoc}
32
     */
33
    protected function evaluateSuccessDataProvider()
34
    {
35
        return array(
36
            array(array(6, 7, 8, 9)),
37
            array(array()),
38
            array(6),
39
        );
40
    }
41
42
    /**
43
     * {@inheritdoc}
@@ 45-51 (lines=7) @@
42
    /**
43
     * {@inheritdoc}
44
     */
45
    protected function evaluateFailureDataProvider()
46
    {
47
        return array(
48
            array(array(6, 7, 8, 9, 5)),
49
            array(4),
50
        );
51
    }
52
}
53

Tests/Units/Quantifier/AtLeastTests.php 1 location

@@ 44-50 (lines=7) @@
41
    /**
42
     * {@inheritdoc}
43
     */
44
    protected function evaluateFailureDataProvider()
45
    {
46
        return array(
47
            array(array(1, 4, 5, 3, 5)),
48
            array(array()),
49
        );
50
    }
51
52
    /**
53
     * Test evaluate at least zero.