* Description: get SCVersion<br>
* Expectation: passes
*/
@Test
public void t20_getSCVersion() throws Exception {
client = new SCMgmtClient(TestConstants.HOST, TestConstants.PORT_SC0_TCP, ConnectionType.NETTY_TCP);
client.attach();
Assert.assertEquals("ScVersion not equal", SCVersion.CURRENT.toString(), client.getSCVersion());
client.detach();
}