如何在 cakephp 中从浏览器运行测试用例

发布于 2024-10-08 04:02:23 字数 419 浏览 4 评论 0原文

我是测试新手,所以请原谅我这个问题

在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

过气美图社 2024-10-15 04:02:23

在 Cake 应用程序中,/app/webroot/ 中有两个重要文件:index.phptest.php。普通请求都是由index.php文件处理的。要运行测试,您必须调用 test.php 文件。因此,如果您通常访问 URL www.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 and test.php. Normal requests are all handled by the index.php file. To run tests, you have to invoke the test.php file. As such, if you are normally visiting the URL www.box.local/, just go to www.box.local/test.php. If your Cake app is in a sub folder and the normal URL is www.box.local/cakeapp/, use www.box.local/cakeapp/test.php.

The actual tests you launch from the interface there.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文