0
votes
1answer
34 views
How to test my forms in Zend Framework 1.8+?
So I've set up testing in my ZF 1.9.5 application thanks to this tutorial, I am able to test my controllers, now I want to create a test for a form. However, I'm having the problem …
0
votes
2answers
32 views
Testing static classes with PHPUnit
Hi,
I've got a set of classes I'm trying to test. Class A depends on Class X. Class X contains functions which do random things and things with databases. I've created a mock vers …
0
votes
3answers
99 views
unit test a method that creates an object
I'm trying to get my head round Unit Testing and there's one more piece of the jigsaw I need to find.
What I'm trying to do is write tests for the following code. In this case, I' …
0
votes
1answer
27 views
Configuring multiple methods in PHPUnit mock objects
I am trying to create a mock object in PHP and PHPUnit. So far, I have this:
$object = $this->getMock('object',
array('set_properties',
…
1
vote
1answer
43 views
Running unit tests on both windows and linux
Is there a way, a method, to be able to effectively run unit tests (phpunit) on both linux and windows?
I need to do this because some parts of the system is only available under …
1
vote
1answer
44 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()
…
2
votes
2answers
126 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
3answers
192 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
2answers
22 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 …
0
votes
2answers
25 views
Debug some PhpUnit tests in Eclipse
Hello,
I use Eclipse PDT for PHP.
I can run my PhpUnit tests : works fine.
But I can not debug my unit tests.
Has someby already done this ?
Can somebody help doing this ?
Thanx …
1
vote
1answer
40 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 …
-1
votes
0answers
15 views
a LIST of great tools that supports Continuous Integration as an automated process.
If anyone can help and provide me with the best possible out-source on-line tools for CI. I have looked at PHPUnderControl+PHPUnit+SeleniumRC is there a better tool then this.
2
votes
2answers
57 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
80 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 …
0
votes
0answers
22 views
Cruisecontrol, build failed exec returned: 255 after compiled phpunit tests?
here is my build.xml code:
<target name="checkout">
<exec executable="svn" dir="${basedir}/source">
<arg line="up" />
</exec>
</targe …
