如何在 Kohana 中实现 SimpleTest
我的老板指派我学习如何使用 Kohana 并在其中实施简单的测试。我们希望将其用作未来项目的框架。
对于 KohanaPHP 和 SimpleTest,我不知道如何对我的助手进行最简单的测试。我什至找不到关于如何将 SimpleTest 连接到 Kohana 的分步教程。
这里有人有想法吗?
My boss assigned me to learn how to use Kohana and implement simple test in that. We would like to use it as our framework for future projects.
Being new to both KohanaPHP and SimpleTest, I can't figure out how to do even the simplest test of my helpers. I can't even find a single step-by-step tutorial on how to attach SimpleTest to Kohana.
Anyone here have an idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们在 Kohana 中创建了一个 SimpleTest_controller
,它从 test 目录中获取测试,
您可以调用
domain.com/simpletest
来运行所有测试或者如果您的测试文件夹中有 accountfolder,您可以调用
domain.com/simpletest/run/account
We've created a SimpleTest_controller in Kohana
and it gets the test from a directory tests
you can call
domain.com/simpletest
to run allor you can call
domain.com/simpletest/run/account
if you have a accountfolder in your testfolder