Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
即当我编写我的测试套件以包括其他套件以及测试用例时,是否有全局计数 TestRunner 已执行的测试数量,将执行?
我可以通过任何方式以编程方式访问该计数吗?
不知道它已经执行了多少,但你不能检查一下总共使用了多少测试self.methods.grep(/test_/)吗?
self.methods.grep(/test_/)
Test::Unit::TestSuite#size可能会有所帮助。
Test::Unit::TestSuite#size
Test::Unit::TestCase#size可能不是,因为它返回 1。
Test::Unit::TestCase#size