[eluser]cfraz[/eluser]
cisco:
I tried your SimpleTester and really like it. I set it up and the template tests work perfectly.
One of the reasons I wanted to try the SimpleTest library is its integrated WebTester. I added
Code:
require_once($libraryDir . '/web_tester.php');
to libraries/simpletester.php, hoping that would give me all the WebTester functionality. The WebTester asserts seem to work, but when I try to get a page with
Code:
class TestOfWebPage extends WebTestCase {
function testHomepage() {
$this->get('http://localhost/webtest/');
}
}
the server just hangs and eventually I get a Nothing Fetched message. This is on Win2003/IIS 6 (I don't have the option of running Apache here).
When I set up SimpleTest in a non-CI framework, the WebTester works fine. Any ideas what's wrong?