如何在 cakephp 中从浏览器运行测试用例
我是测试新手,所以请原谅我这个问题
在cakephp手册的“创建测试”一章下,可以阅读
创建测试用例后,您可以通过浏览http://your .cake.domain/cake_folder/test.php(取决于您的具体设置的外观)并单击“应用程序测试用例”,然后单击指向您的特定文件的链接。
我不明白该网址以及如何应用于我的案例。
我想运行存储在以下位置的测试用例: /app/tests/cases/models/box.test.php
我的域是 www.box.local
我不明白我应该输入什么网址?请赐教。
I'm new to testing, so please forgive me for this question
In the cakephp manual under the "Creating tests" chapter, one can read
When you have created a test case, you can execute it by browsing to http://your.cake.domain/cake_folder/test.php (depending on how your specific setup looks) and clicking App test cases, and then click the link to your specific file.
I don't understand the url, and how to apply to my case.
I'd like to run the following test case stored at: /app/tests/cases/models/box.test.php
My domain is www.box.local
I don't understand what url should I enter? Please enlighten me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Cake 应用程序中,/app/webroot/ 中有两个重要文件:
index.php
和test.php
。普通请求都是由index.php
文件处理的。要运行测试,您必须调用test.php
文件。因此,如果您通常访问 URLwww.box.local/
,只需转到www.box.local/test.php
即可。如果您的 Cake 应用程序位于子文件夹中,并且正常 URL 为www.box.local/cakeapp/
,请使用www.box.local/cakeapp/test.php
。您从那里的界面启动的实际测试。
In the Cake app there are two important files in /app/webroot/:
index.php
andtest.php
. Normal requests are all handled by theindex.php
file. To run tests, you have to invoke thetest.php
file. As such, if you are normally visiting the URLwww.box.local/
, just go towww.box.local/test.php
. If your Cake app is in a sub folder and the normal URL iswww.box.local/cakeapp/
, usewww.box.local/cakeapp/test.php
.The actual tests you launch from the interface there.