1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 23:25:26 +02:00

[add] Added test to create connections with special characters

This commit is contained in:
Uwe Stieber 2007-03-16 13:17:36 +00:00
parent 3cde4bc29a
commit 123cfd3fbc

View file

@ -64,6 +64,11 @@ public class RSEConnectionTestCase extends RSEBaseConnectionTestCase {
props.setProperty(IRSEConnectionProperties.ATTR_NAME, "TestHost6"); //$NON-NLS-1$
connection = getConnectionManager().findOrCreateConnection(props);
assertNotNull("Failed to create connection " + props.getProperty(IRSEConnectionProperties.ATTR_NAME), connection); //$NON-NLS-1$
props.setProperty(IRSEConnectionProperties.ATTR_NAME, "vxsim_128.11.75.12/4_Cores"); //$NON-NLS-1$
connection = getConnectionManager().findOrCreateConnection(props);
assertNotNull("Failed to create connection " + props.getProperty(IRSEConnectionProperties.ATTR_NAME), connection); //$NON-NLS-1$
}
/**
@ -80,6 +85,7 @@ public class RSEConnectionTestCase extends RSEBaseConnectionTestCase {
getConnectionManager().removeConnection(profileName, "TestHost4"); //$NON-NLS-1$
getConnectionManager().removeConnection(profileName, "TestHost5"); //$NON-NLS-1$
getConnectionManager().removeConnection(profileName, "TestHost6"); //$NON-NLS-1$
getConnectionManager().removeConnection(profileName, "vxsim_128.11.75.12/4_Cores"); //$NON-NLS-1$
}
/**