-
Notifications
You must be signed in to change notification settings - Fork 522
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
Issue 3404 replace mockito with actual object in wildflyjarhealthcheckenrichertest #3416
Merged
manusa
merged 14 commits into
eclipse-jkube:master
from
ShivamChavan01:issue-3404-replace-mockito-with-actual-object-in-wildflyjarhealthcheckenrichertest
Oct 10, 2024
Merged
Changes from 7 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
a5d6dc2
Replaced Mockito.mock by creating actual object
ShivamChavan01 67d916f
remove redundant initialization of javaProject in setup method
ShivamChavan01 60fdb76
index on issue-#3407-replace-mockito.mock-by-creating-actual-object: …
ShivamChavan01 79a37f7
WIP on issue-#3407-replace-mockito.mock-by-creating-actual-object: 67…
ShivamChavan01 16a83bd
#3404 Replaced Mockito.mock with actual object creation in WildflyJAR…
ShivamChavan01 8838777
#3404 Replaced Mockito.mock with actual object creation in WildflyJAR…
ShivamChavan01 16e56cb
Replace Mockito mocks with actual objects in WildflyJARHealthCheckEnr…
ShivamChavan01 715e647
Replace Mockito mocks with actual objects in WildflyJARHealthCheckEnr…
ShivamChavan01 4c04880
Reverted some lines
ShivamChavan01 0f21fba
Cleaned up the code by removing extra spaces in the WildflyJARHealthC…
ShivamChavan01 74408be
Merge branch 'eclipse-jkube:master' into issue-3404-replace-mockito-w…
ShivamChavan01 4c53033
Merge remote-tracking branch 'origin/issue-3404-replace-mockito-with-…
ShivamChavan01 34efd87
Using context.getProject() for ProjectBuilder to retain updates
ShivamChavan01 f4b9d48
Changing the intialzation of the Context
ShivamChavan01 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Rather than creating a builder instance from member field
project
you should create it from context itself so that you don't lose changes done incontext.getProject()
after test setup