Expert PHP 5 Tools phần 8

Nếu có xung đột, Subversion không thể giải quyết riêng của mình, nhà phát triển sẽ được nhắc nhở để tự giải quyết các xung đột trước khi tiếp tục. Sau khi đi qua lặp đi lặp lại nhiều Tại thời điểm này, chúng tôi đã hoàn thành tất cả các bước sơ bộ để nâng cấp các trang web. Đối với các hành động, | Chapter 7 Thanks to the way the phpunit executable works it is straightforward to execute subsets of all the tests you have created. If you give the path to an individual test class only that class will be executed. The following command line call to phpunit for example will only execute the tests in the MultipleTest class. DirkMachine phpunit tests Search String BoyerMoore MultipleTest In contrast if you direct phpunit to a directory it will traverse all sub-directories and execute any test file it finds. Thus the following command line results in all tests in classes MultipleTest ResultCountTest and Sequential to be executed. DirkMachine phpunit tests Search String There are also two alternative ways of organizing and grouping tests. First you can define groupings in an XML file that you then pass to the phpunit executable as an option. Second you can extend the PHPUnit_Framework_TestSuite class provided by PHPUnit. You can add any group of individual tests to a test suite. This approach has the additional advantage that PHPUnit_Framework_TestSuite provides methods to allow sharing of fixtures across test classes more about fixtures shortly . For more details on how to use the XML or class-defined test suite please consult the excellent PHPUnit manual. Our first unit test Now that we know about the basic class structure of a unit test and how to use assertions let s put that knowledge to work and create our first basic unit test. classes php require_once PHPUnit require_once . interfaces require_once . classes test class are named after the class they test and extend PHPUnit_Framework_TestCase class BoyerMooreStringSearchTest extends PHPUnit_Framework_TestCase methods are individual test and start with the string test public function testNumberOfMatches poem POEM Forgetting your coffee spreading on our flannel Your lipstick grinning on our coat So gaily in love s .

Không thể tạo bản xem trước, hãy bấm tải xuống
TÀI LIỆU MỚI ĐĂNG
2    73    2    21-05-2024
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.