MultipleRootsUnitTestForSourceQueryImplementation
instead.public interface UnitTestForSourceQueryImplementation
A default implementation is registered by the
org.netbeans.modules.java.project
module which looks up the
project corresponding to the binary file and checks whether that
project has an implementation of this interface in its lookup. If so, it
delegates to that implementation. Therefore it is not generally necessary
for a project type provider to register its own global implementation of
this query, if it depends on the Java Project module and uses this style.
This interface assumes following mapping pattern between source
files and unit tests: *.java -> *Test.java
. This mapping
is used for example for unit test generation and for searching test for
source. Usage of any other pattern will break this functionality.
Project.getLookup()
,
UnitTestForSourceQuery
Modifier and Type | Method and Description |
---|---|
URL |
findSource(FileObject unitTest)
Deprecated.
Returns the source root for a given test root.
|
URL |
findUnitTest(FileObject source)
Deprecated.
Returns the test root for a given source root.
|
URL findUnitTest(FileObject source)
source
- a Java package root with sourcesURL findSource(FileObject unitTest)
unitTest
- a Java package root with unit tests