-
Notifications
You must be signed in to change notification settings - Fork 40
Migrate tests #863
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
base: dev
Are you sure you want to change the base?
Migrate tests #863
Conversation
Lojjs
left a comment
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.
Good work! A few minor things and questions and one optional task if you are really bored
| MATCH (d)-[l:FLIGHTS_TO]->(p) return r as rel1,h as rel2"""; | ||
|
|
||
| @Before | ||
| public void setUp() { |
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.
Optional: If you have enough energy, you could also remove public from all test classes and tests. Intellij are flagging it as warnings in junit 6
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.
Huh according to google you are correct, weird my intellij doesn't warn on it, maybe I am missing a setting somewhere!
| * @author inserpio | ||
| * @since 25.8.2016 | ||
| */ | ||
| @EnterpriseDbmsExtension() |
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.
This one should be able to have createDatabasePerTest = false as well as we are not creating any data
Lojjs
left a comment
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.
🏅 Great
Migrate more tests from Junit 4