* Description: SCServer with host, port, listener port and connection type=null. <br>
* Expectation: throws SCMPValidatorException
*/
@Test(expected = SCMPValidatorException.class)
public void t06_constructor() throws Exception {
server = new SCServer(TestConstants.HOST, TestConstants.PORT_SC0_TCP, TestConstants.PORT_SES_SRV_TCP, null);
Assert.assertEquals("Host not equal", TestConstants.HOST, server.getSCHost());
Assert.assertEquals("Port not equal", TestConstants.PORT_SC0_TCP, server.getSCPort());
Assert.assertEquals("Listener Port not equal", TestConstants.PORT_SES_SRV_TCP, server.getListenerPort());
Assert.assertEquals("Connection Type not equal", null, server.getConnectionType());
Assert.assertNotNull(server);