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
1answer
58 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 ...
0
votes
1answer
36 views

unit testing extended class base functionality

I have an abstract Record class that represents records in the database. Each record must have at least the following columns: id, created, updated. I then extend the Record class to represent rows ...
0
votes
0answers
52 views

Selenium RC Timeout

I am new to test unit stuff. My configuration is a windows vista combined with phpunit and selenium rc (selenium-server-standalone-2.32.0.jar). I have tried loading a testcase file on my prompt ...
0
votes
1answer
27 views

PHPUnit locking objects

I had a question about PHPUnit and how it seems to lock objects and if I am testing in an incorrect fashion or if it is just something on PHPUnit. Here is my test code $t = ...
1
vote
1answer
36 views

How test STDIN in PHPUnit

I have reader class which read from stdin and return readed value. class Reader { const STREAM_READ = 'php://stdin'; private $_streamHandle; public function __construct($stream = ...
0
votes
1answer
23 views

How to run full directories in phpunit?

I have somewhat complex dir structure for my tests. En example: unitests unitests/moduleA unitests/moduleA/t1.php unitests/moduleA/t2.php unitests/moduleA/t3.php unitests/moduleB ...
0
votes
1answer
42 views

Mockery/Etsy PHPExtensions does not fail test if required methods are not called

I have the below code, which I would expect to fail when run as the class DoesNothing doesn't use the mock class or call any of the required methods on it. <?php class DoesNothing { } class ...
0
votes
1answer
70 views

PHPUnit - Mocking a database function

Here's a highly simplified version of the class I'm trying to test: class SimpleORM { private $table, $pdo; public function __construct(PDO $pdo, $table) { $this->pdo = $pdo; ...
0
votes
1answer
126 views

Can phpunit use multiple data provider

One question in short: can phpunit use multiple data provider when running test? For example, I have a method called getById, and I need to run both successful and unsuccessful testcases for it. The ...
0
votes
1answer
49 views

Knowing to interpret the phpunit tests

I´m trying to configure the fixtures and phpunit system is returned the next message '.E', but I don´t know how interpret it: C:\kyopol\Apache 2.22.22\htdocs\demo\protected\tests>phpunit ...
1
vote
1answer
49 views

PHPUnit - breaking code into testable chunks

I read somewhere that it's a good idea to break methods down into smaller, testable functions so that the smaller methods can be tested. But I'm confused on how to test the method that calls the ...
0
votes
1answer
78 views

KO Assertions in testing CRUD, from Phpunit with Yii

I´m following the manual 'Agile Web Application Develpment with Yii1.1 and PHP5', and I don´t know, why do the test CRUD is failed, It was created correctly 'Entity AR class' from Gii after tested ...
2
votes
2answers
226 views

TDD Best Practice In Using Restful Api in Yii application

I'm constantly looking for the best way to use TDD in Yii app development. Nowday most web app are composed by a fronted, an API layer (usually JSON) to provide async calls to the server and a ...
1
vote
3answers
87 views

Unit testing - confused

I am learning unit testing and am getting confused by what a test is and the boundries of where to go with them. So the answer in this question is very clear - ...
1
vote
1answer
67 views

What I need to use: aggregation or composition in TDD?

I'm using TDD. I need to use raw SQL queries in my system. TDD suggests that I need to test only business logic (all tests of database, mail sending or file system is a integration tests). So, I place ...
1
vote
2answers
88 views

Test pass just when there's a single test method

If I comment out one of the tests bellow the test passes. However, running both together, the last one will fail (even if I change tests order): Production code: <?php class View { private ...
0
votes
0answers
37 views

cake 2.2 testing login action

So I am trying to test my view action of my users controller. It expects either an ID passed in the url so /users/view/3 where 3 is the user id, or it will use the currently logged in user. It is ...
0
votes
2answers
1k views

How to install PHPUnit using composer in Windows 07 64 bit?

I have windows 07 64-bit OS and I have downloaded the composer as well as I am running wampserver wampserver2.2e-php5.3.13-httpd2.2.22-mysql5.5.24-x64.exe . I have tried to install PHPUnit using ...
0
votes
1answer
62 views

command not found error while running php test code in command prompt

I followed the site http://elentok.blogspot.com/2011/10/install-phpunit-on-wampserver.html for installing PHPUnit framework for unit testing in PHP. I have downloaded both pear and PHPUnit. I have ...
0
votes
2answers
106 views

Test Driven Development in PHP without using PHPUnit

class TestCase { public function multiply($a,$b) { return $a*$b; } } I need to use test cases in PHP. Some websites suggests that to use TDD in PHP, we need to install PHPUnit. ...
1
vote
1answer
230 views

PHPUnit mock interface and class at the same time

I have some code that looks like this: public function foo(Bar $bar) { if ($bar instanceof Iterator) { //... } } To test this I'm using: $this->getMock('Bar'); However, ...
3
votes
2answers
124 views

PHPUnit - Am I right in thinking I can't use mocks to test a dependency injection container?

I'm unit testing a Dependency Injection Container. At the most basic level, I'm testing that object graph creation is happening correctly. This uses a mixture of reflection and rules loaded into the ...
3
votes
1answer
1k views

Yii Framework testing with PHPUnit and Selenium error/warning

I am using the book: "Agile Web Application Development with Yii 1.1 and PHP5" to get started with Yii. While setting up my TDD environment and running my first test, the following warnings pop up: ...
1
vote
1answer
120 views

WordPress plugin testing unit test or acceptance test or both

I'm building a WordPress plugin and I want to build using test driven development. The first thing I want to test / build is a login form. I'm unsure if I should be unit testing it, acceptance ...
6
votes
2answers
179 views

Should functions like this have Unit Tests?

I've written a webapp using PHP and JS that's kind of working now, and decided that I should learn about unit testing and implement it now while cleaning up my code. I am confused as to what should ...
3
votes
1answer
281 views

Testing strategy. PHPUnit mocks whithin zend framework controller integration/smoke tests

I have a complex backend application, using zf 1.11.11 and phpunit 3.5.15. The application has some complex communication components (soap, rest, etc.). In the CIS or dev testing environment I have to ...
1
vote
1answer
633 views

Testing REST API controller in PHP with PHPUnit

I have a very small test suite for testing CRUD operations on a REST API. My controller displays a form, table, etc, based on the information provided by the API. My test class create a new Buzz ...
5
votes
3answers
743 views

Why should I avoid using DbUnit to test MySQL?

I have recently become involved with some TDD using PHPUnit. I have to test a database-driven app, and read about the DbUnit extension, which I was planning to research and implement over the coming ...
0
votes
1answer
207 views

BadMethodCallException: Method waitForTextPresent not defined

I'm running server on Mandriva 2011 Apache 2.2.22 PHP 5.3.14 PHPUnit Version 3.3.17 Selenium Server 2.24.2 Yii 1.1.10 I pulled some work to my home and see, that I can`t run standard tests.. PHPUnit ...
6
votes
2answers
1k views

PHPUnit: how do I mock multiple method calls with multiple arguments?

I am writing a unit test for a method using PHPUnit. The method I am testing makes a call to the same method on the same object 3 times but with different sets of arguments. My question is similar to ...
0
votes
1answer
1k views

Can't extend PHPUnit_Extensions_Database_TestCase

I had become totally convinced about TDD and trying to use it by the book, looking forward to have a near to 100% test coverage and always writing tests before new coding. I'm using phpUnit over ZF ...
4
votes
1answer
310 views

Selenium don't show failed number lines

I have Selenium server working with PHPUnit on a MAMP local server. When an Assert fail, the failed number line is not showing, instead I see a phpunit number line. When I execute a "phpunit only" ...
2
votes
1answer
498 views

How to test kohana model, controller

I have been working with php for more than 5 years. Lately I have worked in rubyonrails. I have done a few projects in this very nice framework. What I like best from rails and ruby: they both promote ...
5
votes
1answer
998 views

PHPUnit, Interfaces and Namespaces (Symfony2)

I'm currently working on an open source bundle for Symfony2, and really want it to be the dogs nadgers in terms of unit test coverage and general reliability, however I've run into a snag due to my ...
1
vote
1answer
149 views

How to set up PHPUnit test framework without running on Dev server?

I don't have control of the Dev server, and may not be able to install or use PHPUnit on it. I installed PHPUnit 3.6 locally on my machine and it requires requires PHP 5.2.7 (or later). But the Dev ...
3
votes
1answer
758 views

Adding tests to existing Yii project

I have an already running project done with Yii. For the next development phase, i'd like to use a TDD methodolody. Now, I have been playing around a bit getting all the complicated stuff installed ...
4
votes
1answer
402 views

Test move_uploaded_file and is_uploaded_file with vfsStream

I've tried to test move_uploaded_file and is_uploaded_file with PHPUnit and vfsStream. They always return false. public function testShouldUploadAZipFileAndMoveIt() { $_FILES = array('fieldName' ...
2
votes
2answers
451 views

How much memory for unit test suite is ok?

I have ~700 tests with ~1500 assertions, tests are running on sqlite on RAM drive. I run this using phpunit /dir/name, without any additional suite setup. The tests are written well (I hope so), the ...
3
votes
2answers
458 views

Include or require a vfsStream file

Using vfsStream, am I able to require or include a virtual file? $structure = array( 'classes' => array('Foo.php' => '<?php class Foo {} ?>') ); \vfsStream::create($structure); ...
2
votes
2answers
422 views

How do I unit test the zend action controller?

I need to rapidly build good software in php and using the zend framework. I try to go at this in a TDD way because its people more experienced than me told me that was the best way to rapidly build ...
3
votes
3answers
127 views

do PHPUnit tests need to be inside a “/test” directory?

when using PHPUnit, is it required for tests to be inside of a /tests directory? How does PHPUnit know that a test is a "test"? Does it parse the file and look for method names, or use some sort of ...
6
votes
2answers
310 views

How to unit test subclasses

What is the best way to unit test subclasses? Let's assume there's a base class for which I've already written tests and there are some number of subclasses that override some of the parent's ...
6
votes
2answers
2k views

PHPUnit: expects method meaning

When I create a new mock I need to call the expects method. What exactly it does? What about its arguments? $todoListMock = $this->getMock('\Model\Todo_List'); ...
7
votes
5answers
189 views

TDD: How to test a search?

My website will have an advanced search. Pleople can go there and search about an entitiy (cars, for example). I've created some tests that check the number of results based on the search parameters. ...
3
votes
2answers
153 views

PHP and Test-driven development - Log class testing

I'm starting on TDD now. I've made some tests to write a log class. How do I know if I've covered everything in the tests? Am I missing any tests? The test "testShouldWriteANewLogEntry" uses date ...
6
votes
3answers
139 views

Using TDD to Create a Report

I'm currently trying to use PHPUnit to learn about Test Driven Development (TDD) and I have a question about writing reports using TDD. First off: I understand the basic process of TDD: But my ...
3
votes
3answers
1k views

How to safely unit-test write operations in Symfony 2?

I want to create tests for all my CRUD's. But how do I set a separate database for them? Is that the best way to go? This is another question, but it is related: Should I run the tests in the ...
8
votes
3answers
2k views

PHPUnit tests real example

I've created a mail wrapper class. I know that there are lots of libraries to send e-mails but i want to learn TDD... So, I've created some tests and i have some code. Now I can set the email address ...
6
votes
1answer
95 views

Unit Testing Dababase Applications

I am trying to get in to the TDD realm, and I'm having a hard time unit testing a few user models I have. I'm trying to test the validation of my models, and the business requirements are as follows: ...

1 2