use of io.leopard.web.view.TextView in project leopard by tanhaichao.
the class TextViewTest method getMessage.
@Test
public void getMessage() {
TextView textView = new TextView("message");
Assert.assertEquals("message", textView.getMessage());
}
use of io.leopard.web.view.TextView in project leopard by tanhaichao.
the class TextViewTest method getBody.
@Test
public void getBody() {
HttpServletRequest request = new MockHttpServletRequest();
HttpServletResponse response = new MockHttpServletResponse();
TextView textView = new TextView("message");
Assert.assertEquals("message", textView.getBody(request, response));
}
use of io.leopard.web.view.TextView in project leopard by tanhaichao.
the class TextViewTest method getContentType.
@Test
public void getContentType() {
TextView textView = new TextView("message");
Assert.assertEquals("text/plain; charset=UTF-8", textView.getContentType());
}
Aggregations