PHPUnit is the de facto standard for writing unit tests for PHP code.
0
votes
0answers
2 views
Force loading of extra-lazy assoc in Doctrine2 for unit testing (no DQL)
I'm running into a small problem with unit testing in Symfony2. I have a few associations marked as extra-lazy, which is fine.
However, when testing them, they don't get loaded (of course), which ...
0
votes
0answers
10 views
How add PHPUnit autocomplete to sublime text 2
I'd like to add autocomplete drop-down such as PHPUnit_Framework_TestCase, PHPUnit_Framework_Assert etc. while I am typing in Sublime Text 2.
Could anyone tell me how to do it please?
Thanks in ...
0
votes
0answers
5 views
PHPunit won't display syntax errors - how to fix
In my code, not the test, but the actuall class I am testing there is an if{ no closing }
PHPunit just crashes without telling what went wrong.
How do I configure it to show me the errors that it ...
0
votes
2answers
40 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
0answers
14 views
Using Testsuite in Phpunit Causing Error With Lots of Tests
I am using Symfony2 and there are some controllers to test. I am currently working on running all test files with single command.
There are nearly 180 test such as;
...
0
votes
1answer
12 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
17 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
12 views
Test structure XML in PHPUnit
I see assertEqualXMLStructure able to use test structure XML in PHPUnit. But I have problem with case: when 2 structure XML have different the number of children tags it failed although the structures ...
0
votes
0answers
7 views
How to ensure that a method exists in the real object when mocked?
I would like my test to fail if I mock an interface using Mockery and use a shouldReceive with a non-existing method. Looking around didn't help.
For instance :
With an interface :
interface ...
0
votes
0answers
9 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
54 views
Autoloading in Laravel Tests
I'm trying to start writing tests within Laravel.
I think it is good practice to write my own basic TestCase, that runs the test setup (for example migrations).
<?php
class TestCase extends ...
0
votes
1answer
18 views
Get proper installation of PHPUnit Database extension in Symfony2
I've been struggling with my configuration for 2 days now.
When I launch phpunit from my bash emulator (working under windows 7)
bin/phpunit -c app
I got the following error:
Configuration ...
1
vote
2answers
56 views
How to assert the current URL?
I'm unittesting my Yii application with PHPUnit and Selenium-server.
Code:
class StartSurveyRedirectTest extends WebTestCase
{
public $fixtures=array(
'sessions'=>'SurveySession',
...
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
1answer
38 views
How to proper configure PHPunit in PhpStorm
I have a problem with configuration of PHPunit in PHPStorm.
I'm using Windows7 as OS and mostly Zend Framework 2.
Here is a structure of my project:
/module
/Application
/tests
...
0
votes
3answers
25 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
9 views
PHPUnit - Remote Code Coverage
I have a full REST project. Test cases call the rest api through cURL. How can I add this request to code coverage report? I know that PHPUnit-Selenium can collect code coverage report through ...
1
vote
0answers
17 views
Ghostdriver with PHPUnit
I'm attempting to use PhantomJS as a browser for PHPUnit Selenium tests.
I've set Selenium running in grid mode, and started phantomjs with webdriver, and registered it to the grid, as in the ...
0
votes
0answers
16 views
Symfony 2 SessionCsrfProvider & PHPUnit testing
EDIT
actually answered this myself, was so simple:
$session = $this->getMock(
'\Symfony\Component\HttpFoundation\Session\Session',
array(),
array(),
'',
false // don't call constructor
...
0
votes
1answer
24 views
“You cannot define a mapping item when in a sequence” when running phpunit in symfony
I'm getting the following errors when I try to run phpunit on my symfony project:
$ phpunit -c app
1) [...]\DefaultControllerTest::testIndex
...
1
vote
1answer
26 views
Proper way to test a Symfony2 Service with Doctrine
I'm struggling to find the correct way to unit test my symfony 2 services which use doctrine or other common services.
What i have done so far:
In my understanding the controller actions should:
...
0
votes
0answers
24 views
PHPUnit 3.7.19 and Symfony2 broken tests
I'm developing some test for a Symfony2.0 project and running them with PHPUnit.
On my PC works fine but trying them in other environments the tests fails. I thought the problem was php version but ...
0
votes
1answer
10 views
Repeat failed test with phpunit
When I using PHPUnit, some tests are failed, I want to repeat unit testing for failed tests and not for passed tests. Is there a way to do that!?
I can filter tests, but I want to automatically do ...
0
votes
0answers
12 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
20 views
How to run a battery of tests several times with a different end?
I'm doing a functional test of my application with PHPUnit, and a virtual browser written in PHP.
The whole process looks like this (simplified):
class OrderProcessTest extends HttpTestCase
{
...
0
votes
0answers
28 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
29 views
Missing DbAdapter dependencies in Zend Framework 2 PHPUnit
I have a very simple controller action
<?php
namespace Application\Controller;
use Zend\Mvc\Controller\AbstractActionController;
use Zend\View\Model\ViewModel;
class IndexController extends ...
1
vote
0answers
22 views
Jenkins build multi-configuration project with MTAF not working on Saucelabs
I configured Magento Test Automation Framework(MTAF) with jenkins and Saucelabs and everything is working well but When doing Build multi-configuration project I have selected two more browsers form ...
0
votes
0answers
20 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
17 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 ...
0
votes
1answer
43 views
Is it necessary to create mocks for all table classes in every PHPUnit test method in Zend Framework 2?
I have a complete running application and want to write tests for it. I've started by the Application module and I am following the manual. Now I'm writing the "first controller test" and as expected ...
0
votes
2answers
19 views
+50
Configuration PHPUnit with phpt
I'm totally stucked. At first my code:
File sample000.phpt
--TEST--
Basic test
--DESCRIPTION--
Lowlevel basic test
--FILE--
<?php
echo 'Hello World!';
?>
--EXPECT--
Hello World!
File ...
0
votes
0answers
12 views
Why Doesn't PHPUnit's Skelgen include the class file under test?
Had the same problem as here: phpunit with netbeans
The solution is to include the class file under test (manually or using lazy loading).
If the skeleton generator creates all the tests by looking ...
1
vote
0answers
29 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 ...
1
vote
1answer
12 views
Phpunit newbie - how to get assertTrue method
How do I get assertTrue method? My file phpunit_test.php is
<?php
class phptest extends PHPUnit_Framework_TestCase
{
public function test_something()
{
$this->assertTrue{ 1 > 0 };
...
0
votes
0answers
15 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 ...
1
vote
0answers
24 views
phpunit assert that the element has a value
I'm using phpunit for the Yii framework. Tried creating a functional test. How to test that the existing element or label has a value.
I have read that
...
0
votes
1answer
27 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
0answers
15 views
Phpunit database, testing a function
Im trying to make a test for this function, but im not getting anywhere. Could anyone please help me and tell me what i do wrong.
This is the function i wanna test
class checkbrut{
...
0
votes
1answer
52 views
Does PHPUnit ignore the config/autoload/… files in Zend Framework 2?
In my ZF2 application I'm following the "standard" approach handling the configs. There are:
/config/application.config.php -- default appplication wide settings
/config/autoload/global.php -- ...
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 ...
0
votes
0answers
47 views
Test Doctrine ODM respository with phpunit in Symfony2
I want to test this simple query:
public function findArticlesByUsers($ids) {
$qb = $this->createQueryBuilder();
$qb
...
1
vote
0answers
28 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
33 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
28 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)
{ // ...
0
votes
0answers
35 views
Testing Symfony2 Forms causes Could not load type “entity”
I am testing a Form Type I defined for an application. During testing the form type, using symfony's TypeTestCase class a message "Could not load type "entity"" appears. What can I do to solve the ...
1
vote
0answers
26 views
PHPUnit Mock Object replacing Real Class
I have a couple of tests in my test suite being run in Zend_Test
One test creates a mock of Foo_Bar_Baz via PHPUnit's MockBuilder as that class its dependency. Now in the test for Foo_BAR_baz (the ...
0
votes
0answers
21 views
PHPunit not working over network
I have recently installed PHPUnit 3.7.17 on a Windows Server 2008 R2 that has PHP Version 5.3.21, Apache/2.2.21, Pear 1.9.4. I configured netbeans 7.3 on that server for PHPUnit, tested it and all ...
-2
votes
0answers
32 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
30 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) ...

