Привет, мой инструмент покрытия кода - сонар. У меня есть простой основной метод, как это: -
public class MAIN {
public static void main(String[] args)
{
//System.setProperty("hadoop.home.dir", "C:\\software\\winutils");
//args[0]:- location of the input file args[1]:- ingest date args[2]:- source
//args[3]:-location of the output file args[4]:-location of the Error file
//args[5]:-Type of the input file args[6]:-Type of the output file
String input = args[0];
String ingestDate = args[1];
String source=args[2];
String output=args[3];
String error=args[4];
String inputFileType=args[5];
String outputType=args[6];
}
}
тестовый класс для этого: -
public class MyTest {
private String inputFilePath;
private String inputFileType;
private String ingestDate;
private String source;
private String outputPath;
private String errorPath;
public Main driver;
@Test(expected=IndexOutOfBoundsException.class)
public void testMainIncorrectArgs() throws IOException{
//String[] args = {inputFilePath, inputFileType, ingestDate, source, outputPath, errorPath};
driver = new MAIN();
driver.main(new String[]{inputFilePath, inputFileType, ingestDate, source, outputPath, errorPath});
}
}
когда я делаю покрытие кода, инструмент sonarcube не включает покрытие кода основного класса.
Я пытался с PowerMockito и Reflection Api вызвать метод, но результат тот же.