Home | History | Annotate | Download | only in io

Lines Matching defs:second

67         String second = "The second String for testing.";
68 fileWriter.write(second);
72 char[] out = new char[first.length() + second.length() + 10];
75 assertEquals(first + second, new String(out, 0, length));
83 second = "The second String for testing.";
84 fileWriter.write(second);
88 out = new char[first.length() + second.length() + 10];
91 assertEquals(second, new String(out, 0, length));