Package org.hamcrest.object
Class IsEventFrom
- All Implemented Interfaces:
- Matcher<EventObject>,- SelfDescribing
Tests if the value is an event announced by a specific object.
- 
Constructor SummaryConstructorsConstructorDescriptionIsEventFrom(Class<?> eventClass, Object source) Constructor, best called fromeventFrom(Object)oreventFrom(Class, Object).
- 
Method SummaryModifier and TypeMethodDescriptionvoiddescribeTo(Description description) Generates a description of the object.static Matcher<EventObject> eventFrom(Class<? extends EventObject> eventClass, Object source) Creates a matcher ofEventObjectthat matches any object derived from eventClass announced by source.static Matcher<EventObject> Creates a matcher ofEventObjectthat matches any EventObject announced by source.booleanmatchesSafely(EventObject item, Description mismatchDescription) Subclasses should implement this.Methods inherited from class org.hamcrest.TypeSafeDiagnosingMatcherdescribeMismatch, matchesMethods inherited from class org.hamcrest.BaseMatcher_dont_implement_Matcher___instead_extend_BaseMatcher_, isNotNull, toString
- 
Constructor Details- 
IsEventFromConstructor, best called fromeventFrom(Object)oreventFrom(Class, Object).- Parameters:
- eventClass- the expected class of the event
- source- the expected source of the event
 
 
- 
- 
Method Details- 
matchesSafelyDescription copied from class:TypeSafeDiagnosingMatcherSubclasses should implement this. The item will already have been checked for the specific type and will never be null.- Specified by:
- matchesSafelyin class- TypeSafeDiagnosingMatcher<EventObject>
- Parameters:
- item- the item.
- mismatchDescription- the mismatch description.
- Returns:
- boolean true/false depending if item matches matcher.
 
- 
describeToDescription copied from interface:SelfDescribingGenerates a description of the object. The description may be part of a description of a larger object of which this is just a component, so it should be worded appropriately.- Parameters:
- description- The description to be built or appended to.
 
- 
eventFrompublic static Matcher<EventObject> eventFrom(Class<? extends EventObject> eventClass, Object source) Creates a matcher ofEventObjectthat matches any object derived from eventClass announced by source. For example:assertThat(myEvent, is(eventFrom(PropertyChangeEvent.class, myBean))) - Parameters:
- eventClass- the class of the event to match on
- source- the source of the event
- Returns:
- The matcher.
 
- 
eventFromCreates a matcher ofEventObjectthat matches any EventObject announced by source. For example:assertThat(myEvent, is(eventFrom(myBean))) - Parameters:
- source- the source of the event
- Returns:
- The matcher.
 
 
-