1 package junitx.ddtunit.resources;
2
3 import java.util.Collection;
4 import java.util.Iterator;
5
6 public class SecondCollectionImpl implements SecondCollection {
7
8 public void extraMethod() {
9
10
11 }
12
13 public boolean add(Object arg0) {
14
15 return false;
16 }
17
18 public boolean addAll(Collection arg0) {
19
20 return false;
21 }
22
23 public void clear() {
24
25
26 }
27
28 public boolean contains(Object arg0) {
29
30 return false;
31 }
32
33 public boolean containsAll(Collection arg0) {
34
35 return false;
36 }
37
38 public boolean isEmpty() {
39
40 return false;
41 }
42
43 public Iterator iterator() {
44
45 return null;
46 }
47
48 public boolean remove(Object arg0) {
49
50 return false;
51 }
52
53 public boolean removeAll(Collection arg0) {
54
55 return false;
56 }
57
58 public boolean retainAll(Collection arg0) {
59
60 return false;
61 }
62
63 public int size() {
64
65 return 0;
66 }
67
68 public Object[] toArray() {
69
70 return null;
71 }
72
73 public Object[] toArray(Object[] arg0) {
74
75 return null;
76 }
77
78 }