* Description: Invoke Constructor with Host, Port and connection Type<br>
* Expectation: Host, Port and connection Type was set
*/
@Test
public void t02_construtor() {
client = new SCClient(TestConstants.HOST, TestConstants.PORT_SC0_TCP, ConnectionType.NETTY_TCP);
Assert.assertEquals("Host not equal", TestConstants.HOST, client.getHost());
Assert.assertEquals("Port not equal", TestConstants.PORT_SC0_TCP, client.getPort());
Assert.assertEquals("Connection Type not equal", ConnectionType.NETTY_TCP, client.getConnectionType());
Assert.assertNotNull(client);
}