-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implementation of #1251 create multiple types at once #1652
base: master
Are you sure you want to change the base?
Implementation of #1251 create multiple types at once #1652
Conversation
@nettozahler please fix the build errors (you must not change existing API! You can add new API though), sign ECA and quash your commits to a single commit |
1c59008
to
7b12f4c
Compare
Fixed:
|
@@ -758,14 +758,16 @@ private void internalSetJUnit4(boolean isJUnit4) { | |||
} | |||
|
|||
@Override | |||
protected String constructCUContent(ICompilationUnit cu, String typeContent, String lineDelimiter) throws CoreException { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you must not change the Signature of methods that are API. or you get
The method org.eclipse.jdt.junit.wizards.NewTestSuiteWizardPage.constructCUContent(ICompilationUnit, String, String) has been removed
You can however add and additional method and make sure that the old API still works.
@@ -3529,6 +3789,7 @@ public IStatus getSuperInterfaceStatus() { | |||
} | |||
|
|||
/** | |||
* Getter. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please avoid such Boiler plate comments and refactorings. they make this commit unnecessary complicated to review.
What it does
Implementation of #1251 (create multiple types at once)
How to test
TODO / open questions
Author checklist