这个项目主要是一些由JRuby集成在一起的Ruby库套件。这其中也包括在Ruby领域中非常有名的库:RSpec(用于行为驱动开发),mocha(用于mock与stub), dust(描述性程序块语法测试定义,descriptive block syntax test definition),测试/单元以及 ActiveSupport (Ruby工具类)。
你可以这样写测试用例(RSpec非常聪明):
你可以这样写测试用例(RSpec非常聪明):
import java.util.HashMapdescribe \"An empty\", HashMap do before :each do @hash_map = HashMap.new end it \"should be able to add an entry to it\" do @hash_map.put \"foo\", \"bar\" @hash_map.get(\"foo\").should == \"bar\" end it \"should return a keyset iterator that throws an exception on next\" do proc do @hash_map.key_set.iterator.next end.should raise_error(java.util.NoSuchElementException) endend JtestR可以作为Ant的一个任务,支持与Ant,buildr和Maven2的集成。
由于JtestR依赖于JRuby(JRuby正在进行密集的开发),如果你经常运行你的测试,你应该建立服务器Ant任务来避免JRuby过长的启动时间(在入门教程中将有进一步的描述)。
JtestR目前是0.1.1版本,还处于早期阶段,欢迎你的反馈来指导它将来的发展方向。
文章来源于领测软件测试网 https://www.ltesting.net/