Home | History | Annotate | Download | only in testframework

Lines Matching defs:out

97             OutputStream out = create();
98 out.close();
105 OutputStream out = create();
107 out.write(a, 1000, 0);
108 out.write(a, 0, 0);
109 out.write(new byte[] { });
111 out.close();
118 OutputStream out = create();
120 out.write(b);
123 out.close();
134 OutputStream out = create();
137 out.write(a);
140 out.write(b);
143 out.write(c);
145 out.close();
156 OutputStream out = create();
161 out.write(a, 1000, 2);
168 out.write(b, 1020, 4);
174 out.write(c, 0, 3);
176 out.close();
184 OutputStream out = create();
185 out.write(expected);
186 out.close();
193 OutputStream out = create();
195 out.write(expectedBytes);
196 out.close();
199 out.write(new byte[] { 7, 3, 4, 5 });
208 OutputStream out = create();
209 out.write(new byte[] { 5, 6 });
210 out.close();
211 out.write(new byte[] { 7, 3, 4, 5 }); // no exception expected!