如何对 Solr 的 Customer Transformer 实现进行单元测试
如何对 Solr 的 Customer Transformer 实现进行单元测试?谢谢
How can I do unit test on Customer Transformer implementation of Solr ? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
起点是检查 Transformers 测试 @ http://svn.apache.org/repos/asf/lucene/dev/branches/lucene_solr_3_3/solr/contrib/dataimporthandler/src/test/java/org/apache/solr/handler/dataimport/ 并模拟它们
对于单元测试,您可以通过包含 jar 来独立完成它,或者将测试包含在 solr 源代码中并运行完整的测试套件。
A starting point would be to check the Transformers test @ http://svn.apache.org/repos/asf/lucene/dev/branches/lucene_solr_3_3/solr/contrib/dataimporthandler/src/test/java/org/apache/solr/handler/dataimport/ and emulate them
For unit testing you can probably do it standalone by including the jars, or include the tests within the solr source code and run the complete test suite.