I am trying to install ecomdevs' unit testing with my copy of magento. I have added the folders manually to the relevant directories and added the below in app/etc/local.xml.phpunit
<default>
<web>
...
<secure>
<base_url>http://siteName.local</base_url><!--also tried localhost and siteName.local-->
<secure>
<unsecure>
<base_url>http://siteName.local</base_url><!--also tried localhost and siteName.local-->
<unsecure>
...
</web>
</default>
When I go to the command line in the root folder of my site and enter phpunit I get a fatal error returned
Uncaught exception 'RuntimeException' with message 'Cannot run controller test, because the host is not set for base url
I know I'm missing something obvious but ive been looking at this problem for far to long, why am I getting this error? (I'm following this guide)