Package com.microsoft.windowsazure.services.media.models

Examples of com.microsoft.windowsazure.services.media.models.TaskHistoricalEvent


        ListResult<TaskInfo> tasks = service.list(Task.list(actualJobInfo
                .getTasksLink()));
        TaskInfo taskInfo = tasks.get(0);
        List<TaskHistoricalEvent> historicalEvents = taskInfo
                .getHistoricalEvents();
        TaskHistoricalEvent historicalEvent = historicalEvents.get(0);

        // Assert
        assertTrue(historicalEvents.size() >= 5);
        assertNotNull(historicalEvent.getCode());
        assertNotNull(historicalEvent.getTimeStamp());
        assertNull(historicalEvent.getMessage());
    }
View Full Code Here

TOP

Related Classes of com.microsoft.windowsazure.services.media.models.TaskHistoricalEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.