PHPUnit is the de facto standard for writing unit tests for PHP code.

learn more… | top users | synonyms

45
votes
8answers
10k views

Simple test vs PHPunit

I was wondering if anyone that have experience in both these stuff can shed some light on the significant difference between the two, if any? Any specific strength of each that makes it suitable for ...
41
votes
10answers
10k views

Best practices to test protected methods with PHPUnit

I found the discussion on Do you test private method informative. I have decided, that in some classes, I want to have protected methods, but test them. Some of these methods are static and short. ...
22
votes
11answers
14k views

phpunit require_once() error

I recently installed phpunit on my server via the pear installer. When I go to run a test I get the following error: PHP Warning: require_once(PHPUnit/Util/Filter.php): failed to open stream: No ...
21
votes
6answers
13k views

How do I use PHPUnit with Zend Framework?

I would like to know how to write PHPUnit tests with Zend_Test and in general with PHP.
20
votes
8answers
5k views

PHPUnit - Unit Testing with items that need to send headers

I'm currently working with PHPUnit to try and develop tests alongside what I'm writing, however, I'm currently working on writing the Session Manager, and am having issues doing so... The constructor ...
18
votes
9answers
3k views

“Web interface” to PHPUnit tests?

Is there a simple "Web interface" to running PHPUnit test suites? i.e. a PHP script that runs the test on the command line, and outputs a nicely formatted HTML result. I develop web applications, and ...
18
votes
6answers
5k views

How can I get PHPUnit MockObjects to return differernt values based on a parameter?

I've got a PHPUnit mock object that returns "return value" no matter what its arguments: // From inside a test... $mock = $this->getMock('myObject', 'methodToMock'); ...
17
votes
9answers
11k views

Installing PHPUnit via PEAR

I have problems installing PHPUnit 3.4.6 via PEAR 1.9.0. After I discover channel pear.phpunit.de and try to use one of following commands: pear install phpunit/PHPUnit pear install --alldeps ...
16
votes
6answers
4k views

PHPUnit - Testing abstract Classes

How do I test an abstract class works in PHPUnit? I'd expect that I'd have to create some sort of object as part of the test? though - I've no idea the best practice for this, or if phpunit allows ...
15
votes
2answers
1k views

Best practices for database testing with PHPUnit

PHPUnit's own manual has some as-yet-unwritten sections entitled "Operations" and "Database Testing Best Practices." What are best practices for testing a database with PHPUnit, particularly in ...
14
votes
4answers
4k views

Selenium 2 (WebDriver) and Phpunit?

Any one know how to use Selenium 2 with Phpunit? Are there any Selenium 2 samples in PHP?
14
votes
6answers
4k views

phpunit avoid constructor arguments for mock

What is the way to avoid phpunit having to call the constructor for a mock object? Otherwise I would need a mock object as constructor argument, another one for that etc. The api seems to be like ...
13
votes
1answer
216 views

How to test across multiple mysql schemas with PHPUnit?

I would like to test a process that queries across multiple schemas using PHPUnit's PHPUnit_Extensions_Database_TestCase class. I've dug through the documentation, SO and the source code, but it ...
13
votes
3answers
704 views

Mock in PHPUnit - multiple configuration of the same method with different arguments

I would like to ask if is possible to configure mock in PHPUnit this way: $context = $this->getMockBuilder('Context') ->getMock(); $context->expects($this->any()) ...
13
votes
4answers
1k views

What's the state of PHP unit testing frameworks in 2010?

As far as I can see, PHPUnit is the only serious product in the field at the moment. It is widely used, is integrated into Continuous Integration suites like phpUnderControl, and well regarded. The ...
13
votes
9answers
12k views

How might I integrate phpunit with Hudson CI?

We are looking at switching from phpundercontrol to Hudson (it looks to have some really cool features!) but I can't figure out how to get phpunit logs to show up. I have phpunit running fine in ...
11
votes
3answers
135 views

Mocking/stubbing FTP operations in PHPUnit

I'm a relatively new convert to unit testing in general and I've run into a stumbling block here: How do I test code that connects to and performs operations on a remote FTP server using PHP's ...
11
votes
1answer
2k views

Failed to download pear/HTTP_Request2 within preferred state “stable”

When trying to do pear install phpunit/PHPUnit I get the following error Failed to download pear/HTTP_Request2 within preferred state "stable", latest release is version 2.0.0RC1, stability ...
11
votes
3answers
1k views

How do I write unit tests in PHP with a procedural codebase?

I'm mostly convinced of the benefits of unit testing, and I would like to start applying the concept to a large existing codebase written in PHP. Less than 10% of this code is object-oriented. I've ...
11
votes
1answer
3k views

How to test a second parameter in a PHPUnit mock object

This is what I have: $observer = $this->getMock('SomeObserverClass', array('method')); $observer->expects($this->once()) ->method('method') ...
10
votes
1answer
2k views

Can't install PHPUnit via PEAR, requires PEAR Installer >= 1.9.2, can't upgrade PEAR from 1.9.0

I read the other PHPUnit installation questions but haven't had any success. What is going on with my PEAR install? $ sudo pear update-channels Updating channel "components.ez.no" Channel ...
10
votes
7answers
636 views

PHP front controller library with support for unit testing

I am looking for a (small) library that helps me cleanly implement a front controller for my pet project and dispatches requests to single controller classes. The front controller/dispatcher and ...
10
votes
2answers
412 views

phpunit - testing is painfully slow

I am diving deeper and deeper in the world of unit testing. One issue I encountered, and this is where I would like feedback, is when one runs multiple test suites, maybe it is just me but I need to ...
10
votes
3answers
548 views

PHPUnit Test Question - How to Unit test my class

I'm trying to get into Unit testing for the obvious positives it introduces, and I'm trying to write a Unit test for a class I wrote the other day. (I know this is the opposite to TDD, please bear ...
9
votes
4answers
163 views

Testing Legacy PHP Spaghetti Code?

I inherited a fairly large, homemade, php4+MySQL, ecommerce project from developers that literally taught themselves programming and html as they wrote it. (I would shudder except that it's really ...
9
votes
2answers
1k views

PHPUnit Command Line Tool Not working

I run XAMPP on windows. I've recently downloaded PHPUnit from the PEAR CLI tool. Everything looks fine, (eclipse correctly suggests code completion so it means that it was correctly added to the ...
9
votes
5answers
419 views

How should be test with phpunit for xss + sql injection?

How should be test with phpunit php web application for xss + sql injection? I thinking to find program that output xss+ other attacks to test my application forms. This program/service should be all ...
9
votes
1answer
368 views

How do I test login using openid in Zend Framework?

I made loging to my webiste in ZF using openid (e.g. using google, myopenid, yahoo). It works good. But I don't know how to write a unit test for it. As example, I would like to write unit tests: ...
9
votes
4answers
716 views

PHPUnit tutorial? Or more general - unit testing tutorial worth recommending?

I'm looking for a tutorial which explains why and how to write useful unit tests. Specifically I'm interested in PHPUnit, however any more general might be a good one to explain that. Please note that ...
9
votes
3answers
1k views

PHPUnit - multiple stubs of same class

I'm building unit tests for class Foo, and I'm fairly new to unit testing. A key component of my class is an instance of BarCollection which contains a number of Bar objects. One method in Foo ...
9
votes
4answers
3k views

How to install an older version of PHPUnit through PEAR?

I would like to downgrade my installation of PHPUnit 3.4 to 3.3. I'm just not sure how to do it. How do I install version 3.3 of PHPUnit on Ubuntu using PEAR?
9
votes
10answers
7k views

Eclipse PDT & PHPUnit?

Is there any integration of PHPUnit with Eclipse PDT? If not, are there any plans to do so?
9
votes
3answers
2k views

What's the difference between Phing and PHPUnderControl?

We currently use a hand-rolled setup and configuration script and a hand-rolled continuous integration script to build and deploy our application. I am looking at formalizing this somewhat with a ...
8
votes
1answer
138 views

Reaching 100% Code Coverage with PHPUnit

I've been in the process of creating a test suite for a project, and while I realize getting 100% coverage isn't the metric one should strive to, there is a strange bit in the code coverage report to ...
8
votes
1answer
235 views

Vim errorformat for phpunit

I'm working on a Vim compiler plugin for PHPUnit. I've written the following errorformat. The error message is correctly extracted, but file and line numbers are not. CompilerSet errorformat=%E%n)\ ...
8
votes
3answers
483 views

Can I “Mock” time in PHPUnit?

... not knowing if 'mock' is the right word. Anyway, I have an inherited code-base that I'm trying to write some tests for that are time-based. Trying not to be too vague, the code is related to ...
8
votes
3answers
2k views

which unit-test framework for PHP: simpletest, phpunit or?

I'm a big fan of simpletest because it's what I know. It has excellent support for mocking and web-testing. But I'm always scared of stagnating so any compelling arguments to switch would be ...
7
votes
4answers
3k views

Windows Installing PHPUnit via PEAR - Installing PHPUnit via PEAR

When I run: peardev install phpunit/PHPUnit I get the following: No releases available for package "pear.phpunit.de/PHPUnit" install failed I have run the following: pear channel-discover ...
7
votes
1answer
277 views

Is it possible, using PHPUnit mock objects, to expect a call to a magic __call() method?

I've got a mock object in a test. The real object, PageRepository, implements a magic method using __call(), so if you call $pageRepository->findOneByXXXX($value_of_field_XXXX), it will search the ...
7
votes
2answers
235 views

Examples of open source php projects that ship with comprehensive test coverage

There are a series of prior questions that tangentially ask this question, but not directly regarding PHP, and none with actual answers, so I hope you can accommodate this iteration of the question. ...
7
votes
2answers
2k views

Has CodeIgniter 2.0 / PHPUnit happened yet?

So i've just had a pretty disappointing morning/weekend. It came in the form of setting up PHPUnit, Integrating Eclipse etc Now i've just discovered that there's no straightforward way to test ...
7
votes
2answers
458 views

How to Read / Improve C.R.A.P Index Calculated by PHP

I just started working with PHPUnit and it's colorful code coverage reports. I understand all the numbers and percentages save one: The C.R.A.P index. Can anyone offer me a solid explanation of what ...
7
votes
1answer
436 views

Unit testing file operations - where to maintain mock directory structure?

I'm still new to Unit testing, and specifically PHPUnit as the testing framework. Suppose I'm building a unit test for a resource loader class. The class looks for resources to load in two ...
7
votes
1answer
950 views

Creating mock Objects in PHP unit

I've searched but can't quite find what I'm looking for and the manual isn't much help in this respect. I'm fairly new to unit testing, so not sure if I'm on the right track at all. Anyway, onto the ...
7
votes
3answers
390 views

OSS PHP projects using PHPUnit for unit-testing?

I know there are two main unit-testing frameworks in PHP : PHPUnit SimpleTest I am using PHPUnit, and was searching for PHP (Open source would be great ; but I'm also interested in non-OSS ones, ...
7
votes
4answers
2k views

Directory layout for PHPUnit tests?

I'm a longtime Java programmer working on a PHP project, and I'm trying to get PHPUnit up and working. When unit testing in Java, it's common to put test case classes and regular classes into ...
6
votes
2answers
43 views

Writing mocks/stubs for an object before you have written the class for that object?

I'm designing a class that has two dependencies. One of the dependency classes has been written and tested. The other has not yet been written. It has occurred to me because the remaining dependency ...
6
votes
4answers
100 views

What to do when project coding standards conflicts with unit test code coverage?

I'm working on a personal project for the learning experience, and also at the same time to implement a decent body of code. Part of this education, and making it a decent body of code, is unit ...
6
votes
1answer
67 views

PHPUnit: How do I create a function to be called once for all my tests?

I have a PHPUnit test case class (consisting of some test functions). I would like to write a oneTimeSetUp() function to be called once for all my tests in the class (unlike the standard setUp() ...
6
votes
1answer
135 views

How to store shared configuration for zend, phing and phpunit?

I have a PHP application that is written with Zend Framework. It uses Phing for a build system and PHPUnit for unit testing. All these parts have configuration settings. Zend uses application.xml, ...

1 2 3 4 5 22