ClientDeviceImpl deviceImpl = new ClientDeviceImpl();
JsonObject properties = new JsonObject();
properties.add( "connectionType", "CELLULAR" );
environment.dispatchSetOnServiceObject( properties );
ConnectionType connectionType = deviceImpl.getConnectionType();
assertSame( ConnectionType.CELLULAR, connectionType );
}