Home | History | Annotate | Download | only in elonen

Lines Matching defs:string

67                 String[] args = {
104 String string = new String(readContents(response.getEntity()), "UTF-8");
105 Assert.assertEquals("<xml/>", string);
110 string = new String(readContents(response.getEntity()), "UTF-8");
111 Assert.assertEquals("<xml/>", string);
121 String string = new String(readContents(entity), "UTF-8");
122 Assert.assertEquals("<html>\n<head>\n<title>dummy</title>\n</head>\n<body>\n\t<h1>it works</h1>\n</body>\n</html>", string);
128 string = new String(readContents(entity), "UTF-8");
129 Assert.assertTrue(string.indexOf("testdir") > 0);
135 string = new String(readContents(entity), "UTF-8");
136 Assert.assertTrue(string.indexOf("test.html") > 0);