单元测试 jsp 2.0 .tag 文件
人们如何测试 jsp 2.0 标签? 那些具有 .tag 扩展名的文件基本上是 jsp 文件,并且对传递参数有一些额外的支持。
How do people test jsp 2.0 tags? The ones that have .tag extensions and are basically jsp files with some extra support for passing parameters.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们这样做的方法是制作一个 jsp 页面作为测试装置并通过 selenium 运行断言。 几乎不是一个“快速”的单元测试,但也没有你担心的那么低效。
无论如何,您都希望硒测试装置能够运行,对吗? 我们将它用于一些单元测试(例如固定装置),并以系统的方式运行 JsUnit 测试。
The way we do this is by making a jsp page as a test fixture and running the asserts through selenium. Hardly a "quick" unit test, but not as inefficient as you could fear.
You want that selenium test-rig up an running anyway, right ? We use it both for some unit-test like fixtures and to run JsUnit tests in a systematic manner.