use of org.eclipse.xtend.ide.tests.quickfix.QuickfixTestBuilder in project xtext-xtend by eclipse.
the class QuickfixTest method constructorCallWithoutParentheses.
@Test
public void constructorCallWithoutParentheses() {
this.builder.setSeverity(IssueCodes.OPERATION_WITHOUT_PARENTHESES, "error");
StringConcatenation _builder = new StringConcatenation();
_builder.append("import java.util.ArrayList");
_builder.newLine();
_builder.newLine();
_builder.append("class Foo {");
_builder.newLine();
_builder.append("\t");
_builder.append("val foo = new ArrayList|");
_builder.newLine();
_builder.append("}");
_builder.newLine();
QuickfixTestBuilder _assertIssueCodes = this.builder.create("Foo.xtend", _builder).assertIssueCodes(IssueCodes.OPERATION_WITHOUT_PARENTHESES);
StringConcatenation _builder_1 = new StringConcatenation();
_builder_1.append("Add parentheses");
QuickfixTestBuilder _assertResolutionLabels = _assertIssueCodes.assertResolutionLabels(_builder_1.toString());
StringConcatenation _builder_2 = new StringConcatenation();
_builder_2.append("import java.util.ArrayList");
_builder_2.newLine();
_builder_2.newLine();
_builder_2.append("class Foo {");
_builder_2.newLine();
_builder_2.append("\t");
_builder_2.append("val foo = new ArrayList()");
_builder_2.newLine();
_builder_2.append("}");
_builder_2.newLine();
_assertResolutionLabels.assertModelAfterQuickfix(_builder_2);
}
use of org.eclipse.xtend.ide.tests.quickfix.QuickfixTestBuilder in project xtext-xtend by eclipse.
the class QuickfixTest method unhandledCheckedException.
@Test
public void unhandledCheckedException() {
this.builder.setSeverity(IssueCodes.UNHANDLED_EXCEPTION, "error");
StringConcatenation _builder = new StringConcatenation();
_builder.append("class Foo {");
_builder.newLine();
_builder.append("\t");
_builder.append("def void bar() {");
_builder.newLine();
_builder.append("\t\t");
_builder.append("throw new Exception|()");
_builder.newLine();
_builder.append("\t");
_builder.append("}");
_builder.newLine();
_builder.append("}");
_builder.newLine();
QuickfixTestBuilder _assertResolutionLabels = this.builder.create("Foo.xtend", _builder).assertIssueCodes(IssueCodes.UNHANDLED_EXCEPTION).assertResolutionLabels("Add throws declaration", "Surround with try/catch block");
StringConcatenation _builder_1 = new StringConcatenation();
_builder_1.append("class Foo {");
_builder_1.newLine();
_builder_1.append("\t");
_builder_1.append("def void bar() throws Exception {");
_builder_1.newLine();
_builder_1.append("\t\t");
_builder_1.append("throw new Exception()");
_builder_1.newLine();
_builder_1.append("\t");
_builder_1.append("}");
_builder_1.newLine();
_builder_1.append("}");
_builder_1.newLine();
QuickfixTestBuilder _assertModelAfterQuickfix = _assertResolutionLabels.assertModelAfterQuickfix("Add throws declaration", _builder_1);
StringConcatenation _builder_2 = new StringConcatenation();
_builder_2.append("class Foo {");
_builder_2.newLine();
_builder_2.append("\t");
_builder_2.append("def void bar() {");
_builder_2.newLine();
_builder_2.append("\t\t");
_builder_2.append("try {");
_builder_2.newLine();
_builder_2.append("\t\t\t");
_builder_2.append("throw new Exception()");
_builder_2.newLine();
_builder_2.append("\t\t");
_builder_2.append("} catch (Exception exc) {");
_builder_2.newLine();
_builder_2.append("\t\t\t");
_builder_2.append("throw new RuntimeException(\"auto-generated try/catch\", exc)");
_builder_2.newLine();
_builder_2.append("\t\t");
_builder_2.append("}");
_builder_2.newLine();
_builder_2.append("\t");
_builder_2.append("}");
_builder_2.newLine();
_builder_2.append("}");
_builder_2.newLine();
_assertModelAfterQuickfix.assertModelAfterQuickfix("Surround with try/catch block", _builder_2);
}
use of org.eclipse.xtend.ide.tests.quickfix.QuickfixTestBuilder in project xtext-xtend by eclipse.
the class QuickfixTest method fixPackageName_1.
@Test
public void fixPackageName_1() {
StringConcatenation _builder = new StringConcatenation();
_builder.append("package bar|");
_builder.newLine();
_builder.newLine();
_builder.append("class Foo {");
_builder.newLine();
_builder.append("}");
_builder.newLine();
QuickfixTestBuilder _assertResolutionLabels = this.builder.create("test/Foo.xtend", _builder).assertIssueCodes(org.eclipse.xtend.core.validation.IssueCodes.WRONG_PACKAGE).assertResolutionLabels("Change package declaration to \'test\'");
StringConcatenation _builder_1 = new StringConcatenation();
_builder_1.append("package test");
_builder_1.newLine();
_builder_1.newLine();
_builder_1.append("class Foo {");
_builder_1.newLine();
_builder_1.append("}");
_builder_1.newLine();
_assertResolutionLabels.assertModelAfterQuickfix(_builder_1);
}
use of org.eclipse.xtend.ide.tests.quickfix.QuickfixTestBuilder in project xtext-xtend by eclipse.
the class QuickfixTest method missingConstructorCallParentheses.
@Test
public void missingConstructorCallParentheses() {
StringConcatenation _builder = new StringConcatenation();
_builder.append("class TopLevelClassWithDefaultconstructor {");
_builder.newLine();
_builder.append("\t");
_builder.append("def foo() {}");
_builder.newLine();
_builder.append("}");
_builder.newLine();
_builder.newLine();
_builder.append("class Bar {");
_builder.newLine();
_builder.append("\t");
_builder.append("def bar() {");
_builder.newLine();
_builder.append("\t\t");
_builder.append("new TopLevelClassWithDefaultconstructor.foo|");
_builder.newLine();
_builder.append("\t");
_builder.append("}");
_builder.newLine();
_builder.append("}");
_builder.newLine();
QuickfixTestBuilder _assertResolutionLabels = this.builder.create("Foo.xtend", _builder).assertIssueCodes(Diagnostic.LINKING_DIAGNOSTIC).assertResolutionLabels("Change to constructor call \'new TopLevelClassWithDefaultconstructor()\'");
StringConcatenation _builder_1 = new StringConcatenation();
_builder_1.append("class TopLevelClassWithDefaultconstructor {");
_builder_1.newLine();
_builder_1.append("\t");
_builder_1.append("def foo() {}");
_builder_1.newLine();
_builder_1.append("}");
_builder_1.newLine();
_builder_1.newLine();
_builder_1.append("class Bar {");
_builder_1.newLine();
_builder_1.append("\t");
_builder_1.append("def bar() {");
_builder_1.newLine();
_builder_1.append("\t\t");
_builder_1.append("new TopLevelClassWithDefaultconstructor().foo");
_builder_1.newLine();
_builder_1.append("\t");
_builder_1.append("}");
_builder_1.newLine();
_builder_1.append("}");
_builder_1.newLine();
_assertResolutionLabels.assertModelAfterQuickfix(_builder_1);
}
use of org.eclipse.xtend.ide.tests.quickfix.QuickfixTestBuilder in project xtext-xtend by eclipse.
the class QuickfixTest method missingTypeLiteralAccess.
@Test
public void missingTypeLiteralAccess() {
StringConcatenation _builder = new StringConcatenation();
_builder.append("class Foo {");
_builder.newLine();
_builder.append("\t");
_builder.append("def foo() {");
_builder.newLine();
_builder.append("\t\t");
_builder.append("Collections|.newInstance");
_builder.newLine();
_builder.append("\t");
_builder.append("}");
_builder.newLine();
_builder.append("}");
_builder.newLine();
QuickfixTestBuilder _assertResolutionLabelsSubset = this.builder.create("Foo.xtend", _builder).assertTypeLiteralLinkingIssue().assertResolutionLabelsSubset("Import \'Collections\' (java.util)");
StringConcatenation _builder_1 = new StringConcatenation();
_builder_1.append("import java.util.Collections");
_builder_1.newLine();
_builder_1.newLine();
_builder_1.append("class Foo {");
_builder_1.newLine();
_builder_1.append("\t");
_builder_1.append("def foo() {");
_builder_1.newLine();
_builder_1.append("\t\t");
_builder_1.append("Collections.newInstance");
_builder_1.newLine();
_builder_1.append("\t");
_builder_1.append("}");
_builder_1.newLine();
_builder_1.append("}");
_builder_1.newLine();
_assertResolutionLabelsSubset.assertModelAfterQuickfix(_builder_1);
}
Aggregations