0
votes
1answer
19 views
phpUnit config options
what do the following options mean or whats it for
<log type="coverage-html" target="./log/report" charset="UTF-8" yui="true" highlight="true"
lowUpperBound="50" highLowerBound="80"/>
…
0
votes
2answers
26 views
PHPUnit Exception testing, error message messes up results output
Hi, my question regarding phpunit for testing exceptions using the command line tool. I can't seem to correctly do this, the error message of the exception just prints out, making the command line …
4
votes
3answers
59 views
unit tests for screen-scraping?
I'm new to unit testing so I'd like to get the opinion of some who are a little more clued-in.
I need to write some screen-scraping code shortly. The target system is a web ui where there'll be …
0
votes
1answer
24 views
phpunit xml file (phpunit.xml)
i am picking up phpunit. i am at the phpunit.xml file.
i want to understand what does each element do.
<testsuite name="application">
<directory>application</directory>
…
0
votes
1answer
22 views
XDebugging PHPUnit testcases in Eclipse PDT
Until now, I was debugging my PHP scripts and testcases using vim and the appropiate script with python backing it. However, me and my colleagues need to move forward and vim/gvim is not an option for …
0
votes
1answer
23 views
PHPunit command line variable on windows giving trouble
I installed PHPunit via the commandline and added it to my path variables.I then tried to see if it will run, but I got a weird error.
Must be something in some file that I didn't configure …
0
votes
1answer
33 views
Windows Netbeans with PHPunit, not working
I ran into this question: http://stackoverflow.com/questions/1552130
But applying the fix mentioned there does not work. Netbeans keeps saying the version of PHPUnit is too old and that I need at …
0
votes
2answers
97 views
Unit Testing (PHPUnit): how to login?
hi there,
I'm writing tests for my current project, made with Zend Framework.
Everything fine, but I have a problem testing the logged users actions/controllers: I need to be logged in to be able to …
0
votes
4answers
117 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've got a really …
2
votes
2answers
62 views
PHP Unit testing
Is there any EASY php testing Framework and may be simpler than simpletest and not command line based like PHPUnit ?
2
votes
3answers
191 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 …
0
votes
2answers
66 views
determine the http status that will be sent in php
I am trying to write a test case for a class that is managing headers for my application. Among the headers it sends are http status headers. I am using headers_list() to see which headers would be …
0
votes
1answer
66 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 that PHPUnit can't …
0
votes
2answers
48 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 version of Class X …
0
votes
1answer
14 views
Dynamically create PHPUnit tests from data-file
I have a data file with input and expected outputs. An example could be:
input: output:
2 3
3 5
4 Exception
5 8
... ...
Currently I have a custom solution to read …
