()
| 9 | extends AbstractCollection<Pet> { |
| 10 | private Pet[] pets = new PetCreator().array(8); |
| 11 | @Override |
| 12 | public int size() { return pets.length; } |
| 13 | @Override public Iterator<Pet> iterator() { |
| 14 | return new Iterator<Pet>() { // [1] |
| 15 | private int index = 0; |
no outgoing calls
no test coverage detected