@Before
public void setup() throws Exception {
MockitoAnnotations.initMocks(this);
OperationCollectionRepresentation ocr = new OperationCollectionRepresentation();
ocr.setSelf(DEVICE_CONTROL_COLLECTION_URL);
List<OperationRepresentation> opList = new LinkedList<OperationRepresentation>();
ocr.setOperations(opList);
deviceControlApiRepresentation.setOperations(ocr);
deviceControlApi = new DeviceControlApiImpl(null, restConnector, urlProcessor, deviceControlApiRepresentation, DEAFAULT_PAGE_SIZE);
}