mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-08 00:35:49 +02:00
[add] Added test to create connections with special characters
This commit is contained in:
parent
3cde4bc29a
commit
123cfd3fbc
1 changed files with 6 additions and 0 deletions
|
@ -64,6 +64,11 @@ public class RSEConnectionTestCase extends RSEBaseConnectionTestCase {
|
||||||
props.setProperty(IRSEConnectionProperties.ATTR_NAME, "TestHost6"); //$NON-NLS-1$
|
props.setProperty(IRSEConnectionProperties.ATTR_NAME, "TestHost6"); //$NON-NLS-1$
|
||||||
connection = getConnectionManager().findOrCreateConnection(props);
|
connection = getConnectionManager().findOrCreateConnection(props);
|
||||||
assertNotNull("Failed to create connection " + props.getProperty(IRSEConnectionProperties.ATTR_NAME), connection); //$NON-NLS-1$
|
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, "TestHost4"); //$NON-NLS-1$
|
||||||
getConnectionManager().removeConnection(profileName, "TestHost5"); //$NON-NLS-1$
|
getConnectionManager().removeConnection(profileName, "TestHost5"); //$NON-NLS-1$
|
||||||
getConnectionManager().removeConnection(profileName, "TestHost6"); //$NON-NLS-1$
|
getConnectionManager().removeConnection(profileName, "TestHost6"); //$NON-NLS-1$
|
||||||
|
getConnectionManager().removeConnection(profileName, "vxsim_128.11.75.12/4_Cores"); //$NON-NLS-1$
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue