7
votes
7answers
2k views
Simple test vs PHPunit
I was wondering if anyone that have experience in both these stuff can shed some light on the significant difference between the two, if any?
Any specific strength of each that ma …
2
votes
2answers
95 views
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 want to be able to set an expectation for PHPs mysql functions. In my te …
0
votes
1answer
38 views
How to implement SimpleTest in Kohana
Here's the problem, I was assigned task from my bos to learn how to use Kohana and implement simple test in that. We would like to use it as our framework for future projects.
Bei …
0
votes
3answers
85 views
My database doesn’t insert immediately
Hi,
I am a trying to apply Test Driven Development to producing a web page and am having trouble using my database. I am developing using Cake 1.1, PHP5 and SimpleTest to unit tes …
0
votes
1answer
27 views
SimpleTest Mock objects: clearing expectations
The short question: Is there a way to reset a Mock object in SimpleTest, removing all expectations?
The longer explanation:
I have a class that I'm testing using SimpleTest and a …
0
votes
1answer
34 views
Unit Testing With SimpleTest in PHP keeping getting file directory errors from relative paths?
I am using Zend Framework MVC and unit-testing with SimpleTest library. I have a specific model that keeps failing because it uses Zend Cache and the cache directory is a relativ …
3
votes
1answer
110 views
Using Eclipse SimpleTest plugin - SimpleTest not working
I'm using Eclipse 3.4.2 and installed the latest plug-in for simpletest using Help>Software Updates...
The plugin installed correctly and I was able to set it up in Window>Prefere …
1
vote
4answers
86 views
is there a way to trigger an IE window to open from firefox browser using php and javascript?
i am using simpletest as my php unit test framework.
i put all my test cases into a single all_tests.php file
however, because of the tendency of our developers to use firefox to …
0
votes
1answer
32 views
Simpletest TestFixture
Hi,
We are using Simpletest to do some integration testing on my website.
Question:
How can we use the TestFixtures to test my controller code?
Basically we want to control the …
0
votes
0answers
41 views
Drupal’s SimpleTest not creating copies of custom tables
I am using the SimpleTest module version 6.x-2.8 with Drupal 6.13. I wrote a custom module, for which I wrote some tests. However, SimpleTest doesn't seem to be creating a copy of …
0
votes
1answer
66 views
cakephp simpletest webtester delay/sleep function
hi,
I am using simpletest to do integration testing of my websites, and I need to tell the internal browser to wait for a certain amount of time (as the page is being redirected), …
4
votes
1answer
247 views
Real-world testing of CakePHP controllers?
I'm writing a new application with CakePHP (just-released 1.2.4), using SimpleTest 1.0.1. I have read the relevant sections of the Cookbook, searched on the Bakery, and read Mark S …
2
votes
1answer
112 views
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 equivalent for SimpleTest's partial mocks.
Update: I can't seem to find anythi …
0
votes
2answers
116 views
Count pattern in simpletest (PHP test framework)
Hi
How can I test if there is a string only once in a site? I use the WebTestCase from simpletest.
0
votes
1answer
173 views
cakephp - Creating fixtures, how to handle foreign keys?
Hey all -
I'm trying to create some fixture data for my unit tests in CakePHP (via SimpleTest) and I have no idea how to handle my foreign key relationships. Here's a sample of th …
