7
votes
7answers
2k 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 …
5
votes
1answer
119 views
Creating mock Objects in PHP unit
Hi,
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 …
5
votes
6answers
519 views
Eclipse PDT & PHPUnit ??
Is there any integration of PHPUnit with Eclipse PDT?
If not, are there any plans to do so?
5
votes
3answers
822 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 …
4
votes
7answers
552 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 …
4
votes
3answers
712 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 …
3
votes
4answers
202 views
How do I run all my PHPUnit tests?
I have script called Script.php and tests for it in Tests/Script.php, but when I run phpunit Tests it does not execute any tests in my test file. How do I run all my tests with phpunit?
PHPUnit …
3
votes
1answer
92 views
TeamCity and PHP
We are considering TeamCity for continuous integration but have projects in both Rails (Rake tests) and PHP (PHPUnit tests).
I'm a bit new to CI - Has anyone setup TeamCity for PHP projects? If so, …
3
votes
3answers
300 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 …
3
votes
4answers
821 views
Mock Objects in PHPUnit to emulate Static Method Calls?
I am trying to test a class that manages data access in the database (you know, CRUD, essentially). The DB library we're using happens to have an API wherein you first get the table object by a static …
3
votes
4answers
893 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');
…
3
votes
4answers
1k views
Best practices to test protected methods with PHPUnit
Hello,
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 …
2
votes
2answers
62 views
PHPUnit testing for multiple exceptions
When testing for exceptions with PHPUnit, what is the best way to require that every statement or assertion must throw an exception in order for the test to pass?
I basically want to do something …
2
votes
2answers
73 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?
2
votes
2answers
142 views
Zend_Tool CLI issues, throwing fatal errors
Before installing PHPUnit on my Ubuntu machine, I thought I had zf.sh all set up correctly. I was able to create a new project without any issues. Now, since installing PHPUnit, everything is not …
