-
Notifications
You must be signed in to change notification settings - Fork 3
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
Custom MockComponentManager #3
base: master
Are you sure you want to change the base?
Custom MockComponentManager #3
Conversation
…Type(Class<T> requiredType)
I added unitest and some javadoc etc. Please review my changes. |
componentManager.addComponent("test3", component3); | ||
|
||
componentManager.getComponent(Integer.class); | ||
Assert.fail(); |
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.
With the @test (expected=..) when it didn't throw the error the test will fail.
Naming of the test isn't telling it's testing an Exception
@@ -20,6 +20,7 @@ | |||
import java.util.HashMap; | |||
import java.util.Map; | |||
|
|||
import nl.openweb.hippo.mock.*; |
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.
Is this an intended change?
Created custom MockComponentManager to support method getComponentsOfType(Class requiredType)