Top "Simpletest" questions

Simpletest is a Unit and Web Testing framework developed in PHP.

SimpleTest vs PHPunit

I was wondering if anyone that has experience in both this stuff can shed some light on the significant difference …

php unit-testing phpunit simpletest
How to catch an "undefined index" E_NOTICE error in simpleTest?

I would like to write a test using simpleTest that would fail if the method I'm testing results in a …

php exception simpletest
Equivalent of SimpleTest "partial mocks" in PHPUnit?

I'm trying to migrate a bunch of tests from SimpleTest to PHPUnit and I was wondering if there is an …

php phpunit simpletest
PHP Unit testing

Is there any EASY php testing Framework and may be simpler than simpletest and not command line based like PHPUnit ?

php unit-testing phpunit simpletest
How can I write tests for file upload in PHP?

I'm using simpleTest to write my PHP tests. I'm writing a file upload plugin and was wondering how I may …

php unit-testing upload file-upload simpletest
Mocking PHP functions in unit tests

I'm unit-testing some PHP code with SimpleTest and I've run into trouble. In my tests of a database class I …

php unit-testing mocking simpletest
Is it possible to set properties on a Mock Object in Simpletest

I normally use getter and setter methods on my objects and I am fine with testing them as mock objects …

properties mocking simpletest