-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
JUnit testing support Bug fixes and Enhancements - Step 1 (#4303)
Provide JUnit test real-time output in a `Tests` output view
- Loading branch information
1 parent
85d3578
commit 440f92d
Showing
29 changed files
with
2,129 additions
and
272 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
...rver/src/main/java/org/eclipse/che/plugin/java/server/rest/ClasspathServiceInterface.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2012-2017 Codenvy, S.A. | ||
* All rights reserved. This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License v1.0 | ||
* which accompanies this distribution, and is available at | ||
* http://www.eclipse.org/legal/epl-v10.html | ||
* | ||
* Contributors: | ||
* Codenvy, S.A. - initial API and implementation | ||
*******************************************************************************/ | ||
package org.eclipse.che.plugin.java.server.rest; | ||
|
||
import java.util.List; | ||
|
||
import org.eclipse.che.ide.ext.java.shared.dto.classpath.ClasspathEntryDto; | ||
import org.eclipse.jdt.core.JavaModelException; | ||
|
||
import com.google.inject.ImplementedBy; | ||
|
||
|
||
/** | ||
* Interface for the service which gets information about classpath. | ||
* | ||
* @author Valeriy Svydenko | ||
*/ | ||
@ImplementedBy(ClasspathService.class) | ||
public interface ClasspathServiceInterface { | ||
List<ClasspathEntryDto> getClasspath(String projectPath) throws JavaModelException; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.