* Description: enable / disable service twice<br>
* Expectation: stays enabled / disabled
*/
@Test
public void t08_enableDisableTwice() throws Exception {
client = new SCMgmtClient(TestConstants.HOST, TestConstants.PORT_SC0_TCP, ConnectionType.NETTY_TCP);
client.attach();
Assert.assertTrue("Disabled ", client.isServiceEnabled(TestConstants.sesServiceName1));
client.disableService(TestConstants.sesServiceName1);
client.disableService(TestConstants.sesServiceName1);
Assert.assertFalse("Enabled ", client.isServiceEnabled(TestConstants.sesServiceName1));