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