mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-15 16:28:56 +00:00
Fixed CliWizardIntegrationTest on windows. #343
Signed-off-by: Christian Dietrich <christian.dietrich@itemis.de>
This commit is contained in:
parent
c039937f97
commit
d467c7fdbd
2 changed files with 14 additions and 0 deletions
|
@ -55,6 +55,7 @@ class CliWizardIntegrationTest {
|
|||
runtimeProject.testProject.enabled = true
|
||||
ideProject.enabled = true
|
||||
webProject.enabled = true
|
||||
lineDelimiter = "\n"
|
||||
],
|
||||
newProjectConfig => [
|
||||
baseName = "org.xtext.example.mavenTycho"
|
||||
|
@ -66,6 +67,7 @@ class CliWizardIntegrationTest {
|
|||
uiProject.testProject.enabled = true
|
||||
ideProject.enabled = true
|
||||
webProject.enabled = true
|
||||
lineDelimiter = "\n"
|
||||
],
|
||||
newProjectConfig => [
|
||||
baseName = "org.xtext.example.gradle"
|
||||
|
@ -76,6 +78,7 @@ class CliWizardIntegrationTest {
|
|||
ideProject.enabled = true
|
||||
webProject.enabled = true
|
||||
intellijProject.enabled = true
|
||||
lineDelimiter = "\n"
|
||||
],
|
||||
newProjectConfig => [
|
||||
baseName = "org.xtext.example.eclipsePlugin"
|
||||
|
@ -86,6 +89,7 @@ class CliWizardIntegrationTest {
|
|||
ideProject.enabled = true
|
||||
uiProject.enabled = true
|
||||
uiProject.testProject.enabled = true
|
||||
lineDelimiter = "\n"
|
||||
],
|
||||
newProjectConfig => [
|
||||
baseName = "org.xtext.example.eclipsePluginP2"
|
||||
|
@ -97,6 +101,7 @@ class CliWizardIntegrationTest {
|
|||
uiProject.enabled = true
|
||||
uiProject.testProject.enabled = true
|
||||
p2Project.enabled = true
|
||||
lineDelimiter = "\n"
|
||||
],
|
||||
newProjectConfig => [
|
||||
baseName = "org.xtext.example.mavenTychoP2"
|
||||
|
@ -109,6 +114,7 @@ class CliWizardIntegrationTest {
|
|||
ideProject.enabled = true
|
||||
webProject.enabled = true
|
||||
p2Project.enabled = true
|
||||
lineDelimiter = "\n"
|
||||
],
|
||||
newProjectConfig => [
|
||||
baseName = "org.xtext.example.full"
|
||||
|
@ -122,6 +128,7 @@ class CliWizardIntegrationTest {
|
|||
webProject.enabled = true
|
||||
intellijProject.enabled = true
|
||||
p2Project.enabled = true
|
||||
lineDelimiter = "\n"
|
||||
]
|
||||
]
|
||||
|
||||
|
|
|
@ -154,6 +154,7 @@ public class CliWizardIntegrationTest {
|
|||
_ideProject.setEnabled(true);
|
||||
WebProjectDescriptor _webProject = it.getWebProject();
|
||||
_webProject.setEnabled(true);
|
||||
it.setLineDelimiter("\n");
|
||||
})), ObjectExtensions.<WizardConfiguration>operator_doubleArrow(
|
||||
CliWizardIntegrationTest.newProjectConfig(), ((Procedure1<WizardConfiguration>) (WizardConfiguration it) -> {
|
||||
it.setBaseName("org.xtext.example.mavenTycho");
|
||||
|
@ -170,6 +171,7 @@ public class CliWizardIntegrationTest {
|
|||
_ideProject.setEnabled(true);
|
||||
WebProjectDescriptor _webProject = it.getWebProject();
|
||||
_webProject.setEnabled(true);
|
||||
it.setLineDelimiter("\n");
|
||||
})), ObjectExtensions.<WizardConfiguration>operator_doubleArrow(
|
||||
CliWizardIntegrationTest.newProjectConfig(), ((Procedure1<WizardConfiguration>) (WizardConfiguration it) -> {
|
||||
it.setBaseName("org.xtext.example.gradle");
|
||||
|
@ -184,6 +186,7 @@ public class CliWizardIntegrationTest {
|
|||
_webProject.setEnabled(true);
|
||||
IntellijProjectDescriptor _intellijProject = it.getIntellijProject();
|
||||
_intellijProject.setEnabled(true);
|
||||
it.setLineDelimiter("\n");
|
||||
})), ObjectExtensions.<WizardConfiguration>operator_doubleArrow(
|
||||
CliWizardIntegrationTest.newProjectConfig(), ((Procedure1<WizardConfiguration>) (WizardConfiguration it) -> {
|
||||
it.setBaseName("org.xtext.example.eclipsePlugin");
|
||||
|
@ -198,6 +201,7 @@ public class CliWizardIntegrationTest {
|
|||
_uiProject.setEnabled(true);
|
||||
TestProjectDescriptor _testProject_1 = it.getUiProject().getTestProject();
|
||||
_testProject_1.setEnabled(true);
|
||||
it.setLineDelimiter("\n");
|
||||
})), ObjectExtensions.<WizardConfiguration>operator_doubleArrow(
|
||||
CliWizardIntegrationTest.newProjectConfig(), ((Procedure1<WizardConfiguration>) (WizardConfiguration it) -> {
|
||||
it.setBaseName("org.xtext.example.eclipsePluginP2");
|
||||
|
@ -214,6 +218,7 @@ public class CliWizardIntegrationTest {
|
|||
_testProject_1.setEnabled(true);
|
||||
P2RepositoryProject _p2Project = it.getP2Project();
|
||||
_p2Project.setEnabled(true);
|
||||
it.setLineDelimiter("\n");
|
||||
})), ObjectExtensions.<WizardConfiguration>operator_doubleArrow(
|
||||
CliWizardIntegrationTest.newProjectConfig(), ((Procedure1<WizardConfiguration>) (WizardConfiguration it) -> {
|
||||
it.setBaseName("org.xtext.example.mavenTychoP2");
|
||||
|
@ -232,6 +237,7 @@ public class CliWizardIntegrationTest {
|
|||
_webProject.setEnabled(true);
|
||||
P2RepositoryProject _p2Project = it.getP2Project();
|
||||
_p2Project.setEnabled(true);
|
||||
it.setLineDelimiter("\n");
|
||||
})), ObjectExtensions.<WizardConfiguration>operator_doubleArrow(
|
||||
CliWizardIntegrationTest.newProjectConfig(), ((Procedure1<WizardConfiguration>) (WizardConfiguration it) -> {
|
||||
it.setBaseName("org.xtext.example.full");
|
||||
|
@ -252,6 +258,7 @@ public class CliWizardIntegrationTest {
|
|||
_intellijProject.setEnabled(true);
|
||||
P2RepositoryProject _p2Project = it.getP2Project();
|
||||
_p2Project.setEnabled(true);
|
||||
it.setLineDelimiter("\n");
|
||||
}))));
|
||||
|
||||
private static WizardConfiguration newProjectConfig() {
|
||||
|
|
Loading…
Reference in a new issue