You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
457 B
27 lines
457 B
package de.kreth.property2java;
|
|
|
|
import java.io.Reader;
|
|
import java.nio.file.Path;
|
|
import java.util.Map;
|
|
|
|
class TestImplConfig implements Configuration {
|
|
|
|
@Override
|
|
public String getPackage() {
|
|
// TODO Auto-generated method stub
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public Map<String, Reader> getInput() {
|
|
// TODO Auto-generated method stub
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public Path getRootPath() {
|
|
// TODO Auto-generated method stub
|
|
return null;
|
|
}
|
|
|
|
} |