Search in sources :

Example 1 with OperationQueueingListener

use of com.microsoft.live.test.util.OperationQueueingListener in project LiveSDK-for-Android by liveservices.

the class JsonEnclosingApiTest method setUp.

@Override
protected void setUp() throws Exception {
    super.setUp();
    this.responseQueue = new LinkedBlockingQueue<LiveOperation>();
    this.queueingListener = new OperationQueueingListener(this.exceptionQueue, this.responseQueue);
}
Also used : LiveOperation(com.microsoft.live.LiveOperation) OperationQueueingListener(com.microsoft.live.test.util.OperationQueueingListener)

Example 2 with OperationQueueingListener

use of com.microsoft.live.test.util.OperationQueueingListener in project LiveSDK-for-Android by liveservices.

the class FileOperationApiTest method setUp.

@Override
protected void setUp() throws Exception {
    super.setUp();
    this.responseQueue = new LinkedBlockingQueue<LiveOperation>();
    this.queueingListener = new OperationQueueingListener(this.exceptionQueue, this.responseQueue);
}
Also used : LiveOperation(com.microsoft.live.LiveOperation) OperationQueueingListener(com.microsoft.live.test.util.OperationQueueingListener)

Example 3 with OperationQueueingListener

use of com.microsoft.live.test.util.OperationQueueingListener in project LiveSDK-for-Android by liveservices.

the class GetTest method setUp.

@Override
protected void setUp() throws Exception {
    super.setUp();
    this.responseQueue = new LinkedBlockingQueue<LiveOperation>();
    this.queueingListener = new OperationQueueingListener(this.exceptionQueue, this.responseQueue);
}
Also used : LiveOperation(com.microsoft.live.LiveOperation) OperationQueueingListener(com.microsoft.live.test.util.OperationQueueingListener)

Example 4 with OperationQueueingListener

use of com.microsoft.live.test.util.OperationQueueingListener in project LiveSDK-for-Android by liveservices.

the class DeleteTest method setUp.

@Override
protected void setUp() throws Exception {
    super.setUp();
    this.calendarId = "calendar.013123";
    this.responseQueue = new LinkedBlockingQueue<LiveOperation>();
    this.queueingListener = new OperationQueueingListener(this.exceptionQueue, this.responseQueue);
}
Also used : LiveOperation(com.microsoft.live.LiveOperation) OperationQueueingListener(com.microsoft.live.test.util.OperationQueueingListener)

Aggregations

LiveOperation (com.microsoft.live.LiveOperation)4 OperationQueueingListener (com.microsoft.live.test.util.OperationQueueingListener)4