-
Task
-
Resolution: Done
-
Major
-
JBossAS-5.0.0.Beta1
-
None
public class xxTestCase
{
private url = "http" + getServerHost() + .....;
}
needs to be changed to:
public class xxTestCase
{
private url ;
public void setUp()
{
super.setUp();
url = "http" + getServerHost() + ....;
}
Also all the hardcoded "localhost" tests should be replaced with getServerHost