use of org.eclipse.che.api.machine.shared.dto.execagent.event.ProcessStartedEventDto in project che by eclipse.
the class TestServiceClientTest method processStarted.
private ProcessStartedEventDto processStarted() {
ProcessStartedEventDto event = mock(ProcessStartedEventDto.class);
when(event.toString()).thenReturn("Started");
return event;
}
Aggregations