1
vote
1answer
24 views
PHPUnit: Testing if a protected method was called
I´m trying to test if a protected method is called in a public interface.
<?php
abstract class SomeClassAbstract
{
abstract public foo();
public function doStuff()
…
0
votes
2answers
11 views
How does one configure PHPUnit to log to the test database?
Hi All
I am trying to work out how to configure PHPUnit to use the "test database" that is described on this wiki page: http://www.phpunit.de/wiki/TestDatabase However I can't fin …
1
vote
1answer
36 views
PHPUnit, Testing “Behaves Like A…”
I have a series of PHPUnit tests to validate a class, "Class A".
I have another class, "Class B" which extends Class A.
Is there a good way to test that "Class B passes Class A's …
0
votes
1answer
20 views
Dealing with path issues with PHPUnit
I've just started to use PHPUnit, but I've run into a bit of a snag.
My code uses $_SERVER['DOCUMENT_ROOT'] to compute paths for includes, which works when my apache server is the …
2
votes
3answers
127 views
How do I fix my NetBeans + PHPUnit integration?
On NetBeans 6.7.1 with PHPUnit 3.4.1, If I try and run the test I setup in NetBeans it errors out and can't execute the test, here is the output:
PHPUnit 3.4.1 by Sebastian Bergma …
0
votes
1answer
17 views
How can I stop Zend_Db_Table_Abstract fetchrow returning garbage data when running tests?
Hi,
I'm fairly new to Zend and am having some difficulties with creating my unit tests. I've stripped it down to a minimal test class that still replicates the problem in the hope …
1
vote
1answer
84 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, ev …
2
votes
2answers
40 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 …
1
vote
5answers
76 views
Writing unit tests for methods which have a degree of randomization
I'm using PHPUnit and my traditional approach is to use mock objects and methods that get called by the methods I'm testing. The mock objects are told what to expect as input by th …
2
votes
2answers
48 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?
0
votes
1answer
258 views
can’t install PHPUnit through pear
the install instructions for phpunit are running this:
pear channel-discover pear.phpunit.de
pear install phpunit/PHPUnit
the first one goes okay , on the second I get an error: …
0
votes
2answers
108 views
PHPUnit: Verifying that array has a key with given value
Given the following class:
<?php
class Example {
private $Other;
public function __construct ($Other)
{
$this->Other = $Other;
}
public functi …
3
votes
1answer
79 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 PH …
1
vote
1answer
41 views
PHPUnit Database Extension - How to have an empty dataset?
I want to create a test table that is empty. Using the Example from digitalsandwich, I want something like:
require_once 'PHPUnit/Extensions/Database/TestCase.php';
class BankAcc …
0
votes
2answers
32 views
How to set a global before PHPUnit’s skeleton-test is run
We set a global in our prepend file used to form the path for our require_once calls. For example:
require_once($GLOBALS['root'].'/library/particleboard/JsonUtil.php');
Problem …
