Tagged Questions
0
votes
1answer
18 views
PHP Unit tests in NetBeans 7.3
I using NetBeans 7.3 with PHP Unit test.
Test file creation works. I can create test file by right-click: tools->create PHP unit test. New test is created in Test folder (filenameTest.php).
When I ...
0
votes
0answers
19 views
How do I run a PHPUnit Selenium test without having a new browser window run for each function?
Okey, so I am trying to run a selenium test case using PHPUnit. And the first thing I do is trying the login function, this works perfect but then I want to run a function to check information on the ...
0
votes
1answer
22 views
Mocking the function of a separate class
I have function test which return the repsonse of static function staticABC that belongs to separate class
function test()
{
return testA::staticABC();
}
Now I want to write PHPUnit cases for ...
0
votes
1answer
17 views
PHPUnit and PHP_CodeCoverage: Enable PHP_CodeCoverage for entire code base
All of my code base is in one folder and it's sub-directories, all of my tests are in another folder and it's sub-directories. When I run PHPUnit, I point it to the test folder, and all Files in my ...
1
vote
1answer
18 views
PHPUnit Cannot send session cookie - headers already sent
While using PHPUnit via the below code-snippet in Eclipse, I get the error:
Cannot send session cookie - headers already sent by (output started
at ...
0
votes
1answer
31 views
PHPUnit and Ubuntu - Issues with include path after Installation with PEAR
I need to install PHPUnit for a web dev project on my Ubuntu box, but am having serious issues. Using suggestions from various sources, I've installed via pear and tried the following:
Currently, ...
0
votes
1answer
137 views
PHPUnit --no-coverage option to overwrite config file
I use PHPUnit to test my projects, using a phpunit.xml.dist config file.
The default configuration for all my projects is set to generate html code coverage reports.
Is there anyway I can run the ...
0
votes
1answer
14 views
Select all matching elements in PHPUnit Selenium 2 test case
It is simple to select an element by specifying its class, in PHPUnit Selenium 2 test case:
$element = $this->byClassName("my_class");
However, even if there are two items of my_class, the ...
0
votes
2answers
78 views
Laravel 4 Unit Testing: “headers already sent” error when injecting mocks using App::instance
I'm new to Laravel and the concept of the IoC. I was following the great tutorials over a Nettuts (http://net.tutsplus.com/tutorials/php/testing-laravel-controllers/) and was able to successful test ...
0
votes
1answer
16 views
Unit test exception-messages formatted with sprintf
How can I test if an exception throws the expected error message, when I format my error messages like this:
throw new \Exception(sprintf('Random string: "%s".', 'blablabla'));
Obviously testing ...
0
votes
1answer
25 views
PHPUnit out of box not working on OSX
Installed PHPUnit via PEAR and copied the latest repository from https://github.com/sebastianbergmann/phpunit/
Wrote a basic test and saved it in the root directory (also tried /Tests/)
<?php
...
0
votes
0answers
10 views
Writing fixtures to load binary data into MySQL database with PHPUnit
I have to write some tests and in order for they to work they need to have some pre-existing data loaded in the database.
For most cases I got it working using the phpunit extension to load the ...
0
votes
1answer
12 views
Phpunit: Testing files outside the testsuite
I'm having a problem when running phpunit on my tests directory.
The default class inheritence is like this: ControllerTest > ProjectTestCase > Zend_Test_PHPUnit_ControllerTestCase.
Both the ...
0
votes
3answers
31 views
Symfony 2 functional test: authenticate user of own User class
As described in answer of How to use an authenticated user in a Symfony2 functional test? there is a simple solution with Symfony\Component\Security\Core\User\User.
But I have different User class ...
0
votes
0answers
15 views
How to install phpUnit for a standalone project that needs to be commited to git
i need to start adding unit tests to our existing codebase. I have a new git repo which wil hold the tests, i need to install phpUnit and our plugin and commit the result to the repo so that anyone ...
0
votes
0answers
35 views
PHPUnit Mock Database Connection Class
I'm adding unit tests to legacy codes in a MVC framework. I have a model class called DbConnection that initiate all the database connection, it looks like this:
class DbConnection
function ...
0
votes
0answers
23 views
Using mockery, how do you make a method on mock expect a specific DateTime object
I built some functionality around laravel 4's query builder, and to test out a certain part, i need to do something like this:
$dateTimeObject = new DateTime; // some other stuff with this object
...
0
votes
0answers
20 views
Selenium through PHPUnit with pages that have Content-Type: application/json
I am using PHPUnit and Selenium to access a page that returns a page that has a json header. When I call $this->source(); It doesn't return a json string, but a string containing an html page with ...
1
vote
0answers
31 views
Phpunit does not execute effective parent test case?
I'm currently testing a wrapper to an API with PHPUnit (CLI).
Due to the nature of the tests, I can pretty much use the same code for testing two different use cases. The only difference is in the ...
0
votes
0answers
17 views
autoload does not work for phpunittest
My __autoload method seems to work perfectly for my usual code but runs errors when I am testing the code with phpunittest. the code below will trigger a fatal error "class not found". any idea what ...
0
votes
1answer
29 views
Yii CDbTestCase findByAttributes is creating a row
I am writing a unit test, and I stumbled upon a very strange behavior.
I have a test fixture so I expect to see 1 row in the database (there is only 1 row listed in the fixture) I wrote some code to ...
0
votes
1answer
50 views
How to set up a test for a specific php function
Can anyone please help me set up an unit-test for this php code, ive been trying and haven't found a solution yet. I have recieved this code from the developer-team and Im supposed to create ...
1
vote
0answers
30 views
PHPUnit code coverage report in Clover XML format contains interfaces
I use the @codeCoverageIgnore annotation in order to ignore interfaces in code coverage reports. Some time ago I have used code coverage report in HTML format and I have not found any issues while I ...
1
vote
1answer
38 views
phpUnit code coverage on interfaces shows no success
Currently I am doing a whitebox test so the parent class and all interfaces are tested. This covers them all so I add the doc comment:
/**
* @covers ...
0
votes
0answers
29 views
Unreachable statement for PHPUnit achieving 100% Code Coverage
I let PHPUnit generate a code coverage and XDebug tell it that some lines have not been reached:
public static function execute()
{
static $hasRun = false;
if (false == $hasRun)
{ // ...
-2
votes
0answers
38 views
how to create dynamic text field with values from database in php [closed]
how to create multiple dynamic text fields with values from database in php? And the values from database is also multiple in some time
I want to show those values also
0
votes
2answers
32 views
How to return the argument of a mocked method?
Hi all how can I make it so in PHPUnit a mocked method returns its passed argument?
E.g:
$redirector->expects( $this->once() )->method('gotoUrl')->will( $this->returnValue($argument) ...
0
votes
1answer
31 views
PHPUnit Testing for JSON Output
I am very new to PHPUnit testing and I need help.
why can't I get the input and test if it's not null?
My Method I am testing:
/**
* @method: getCategory
* retrieves the categories
* @return ...
0
votes
1answer
24 views
PHPUnit mock object methods
I am learning unit testing with PHPUnit and am running into a strange problem with mock objects that I can't resolve. I set up these dummy files as an example of what I am experiencing:
Class1
...
0
votes
1answer
86 views
jenkins setting up a php project - errors in log
So using jenkins-php.org I tried to setup a project. Unfortunately I get errors. First of all where do I put those xml configuration files it asks for (phpmd and phpcd)? And are there some standard ...
1
vote
1answer
67 views
How to install PHPUnit with WAMP?
I'm a newbie programmer and I have tried for an embarrassingly long time to get PHPUnit set up and working with WAMP. I have read the documentation and went through various sites to see what I'm doing ...
0
votes
1answer
75 views
file_get_contents('php://input') empty in Unit Test
I'm using Zend-Framework and PHP-Unit.
MY SETUP
I have a html form:
<form method="post" action="/my-module/my-controller/do">
<input type="text" name="var" value="my value" />
...
1
vote
1answer
60 views
How can Java from Kent Beck's book TDD by example be represented in PHP?
I am teaching myself PHP as well as TDD (Using PHP and PHPUnit). I am working through the book Test-driven Development by Example by Kent Beck.
In Chapter 3, for example, He suggests this for the ...
1
vote
1answer
32 views
Automated UnitTesting for several server/php versions on one machine
How do I setup automated unittesting (I use phpUnit) for several PHP versions on the same server?
Or if not possible what affordable solutions are there?
I deploy my code to several customer servers ...
0
votes
1answer
33 views
Modify services to use from Container during test execution
I have to test some Commands which are using services that are taken from the container during execution.
It is possible to make the Command to use different services during test execution?
PS: ...
0
votes
0answers
104 views
PhpUnit failing in PhpStorm w/ exit code 255 in Symfony 2 project
I'm having trouble getting phpunit working inside of a Symfony project in PhpStorm - phpunit -c app works fine in the OSX terminal.
Here is the error:
Unable to attach test reporter to test ...
2
votes
2answers
45 views
PHPUNIT mock with at() feature works weird
here is the following code sample
<?php
interface iFS
{
public function read();
public function write($data);
}
class MyClass
{
protected $_fs = null;
public function ...
2
votes
1answer
74 views
Create a test for widget in yii
I created a widget in Yii to display graphics using the http://www.highcharts.com/ library. My widget works pretty similar as CGridView widget from Yii.
I know that for visual elements I could have a ...
0
votes
1answer
21 views
How to write a test case for phpunit where the code being tested uses optional modules and are not always available
I'm just getting into writing testcases and am not sure how to handle certain tests. The classes I'm testing are, in very basic terms, wrappers for various opcode caches. The tests will be bundled ...
0
votes
1answer
46 views
Unit Test code generation
We have a project developed by 2 years with poorly designed architecture. Now a days there are no any unit tests at all.
Current version of system works satisfyingly but we vitally need refactoring ...
1
vote
1answer
44 views
PHPUnit mock all methods of an abstract class
I have a PHPUnit test case directly deriving from PHPUnit_Framework_TestCase. In a test in this class I need to get a mock for some service object. This service object is of a type defined by an ...
1
vote
1answer
24 views
How do I run PHPUnit 3.7 with Ant?
I'm using PHPUnit 3.7 and trying to automatically build (and test) my project with Apache Ant. I've read through the documentation for PHPUnit and cannot find how to configure it to throw errors to ...
1
vote
3answers
199 views
Laravel 4 testing; 'phpunit' is not recognized?
http://four.laravel.com/docs/testing Says "After installing a new Laravel application, simply run phpunit on the command line to run your tests."
phpunit isn't recognized, I also tried php artisian ...
0
votes
0answers
83 views
Unable to run PHPUnit (Installed locally with composer) on shared hosting (hostgator)
I'm attempting to use composer for the first time and am having some difficulty getting phpunit setup in my shared hosting envrionment. An old version of phpunit is available in /usr/local/bin. ...
0
votes
2answers
50 views
Entity Class not found PHPUnit Test
Below are the paths where files are located,
src\TW\Talk\Entity\Talk.php
src\Tests\Talk\Entity\TalkTest.php
src\phpunit.xml.dist
In TalkTest.php, I have included PHPUnit and the entity Talk.
...
1
vote
2answers
40 views
PHPUnit and mysqli_connect generate warning
I'm new to unit testing and want to start using for a large project I'm working on. I've got PHPUnit running on my Mac (10.8.3) alongside MAMP. The application I'm writing unit tests for relies ...
0
votes
2answers
50 views
PHPUnit CIUnit Issue
When I run a specific test suite,
phpunit --testsuite LibTests
I get my expected results (passing tests). However, when I run "phpunit", I get an error claiming:
Fatal error: Call to a member ...
0
votes
1answer
26 views
why error_log generate a RuntimeException only with phpunit's --process-isolation
i had a few tests which code being tested outputed some error_log information (since i'm testing failures as well, this is expected)
e.g.
<?php
Class X {
function dosomething(){
...
0
votes
2answers
40 views
How to ignore test method in phpunit
What is the attribute that should be placed next to the PHP test method in order to ignore the test using PHPUnit ?
I know that for NUnit the attribute is :
[Test]
[Ignore]
public void IgnoredTest()
...
1
vote
2answers
34 views
How to use phpunit with php4 code
I have the following example test code (PHP4) I need to run with phpunit:
<?php
require_once 'PHPUnit/Framework.php';
class RemoteConnectTest extends PHPUnit_Framework_TestCase
{
public ...

