📄 streamviewtest.java
字号:
package anni.core.web.prototype;
import junit.framework.TestCase;
public class StreamViewTest extends TestCase {
protected StreamView view = null;
@Override
protected void setUp() {
view = new StreamView();
}
@Override
protected void tearDown() {
}
public void testContentType() throws Exception {
assertEquals("text/plain", view.getContentType());
view.render(null, null, null);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -