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);
}
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);
}
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);
}
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);
}
Aggregations