use of com.goide.runconfig.file.GoRunFileConfigurationType in project go-lang-idea-plugin by go-lang-plugin-org.
the class GoRunConfigurationProducerTest method createRunAppFileConfiguration.
private GoApplicationConfiguration createRunAppFileConfiguration(String filePath) {
GoRunFileConfigurationType type = GoRunFileConfigurationType.getInstance();
GoApplicationConfiguration result = new GoApplicationConfiguration(myFixture.getProject(), "run file", type);
result.setKind(GoApplicationConfiguration.Kind.FILE);
result.setFilePath(filePath);
return result;
}
use of com.goide.runconfig.file.GoRunFileConfigurationType in project go-lang-idea-plugin by go-lang-plugin-org.
the class GoRunConfigurationProducerTest method createFileConfiguration.
private GoRunFileConfiguration createFileConfiguration(String filePath) {
GoRunFileConfigurationType type = GoRunFileConfigurationType.getInstance();
GoRunFileConfiguration result = new GoRunFileConfiguration(myFixture.getProject(), "run file", type);
result.setFilePath(filePath);
return result;
}
Aggregations