Java Code Examples for org.hamcrest.Matchers#any()

The following examples show how to use org.hamcrest.Matchers#any() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: BottomSheetBehaviorTest.java    From material-components-android with Apache License 2.0 4 votes vote down vote up
@Override
public Matcher<View> getConstraints() {
  return Matchers.any(View.class);
}
 
Example 2
Source File: SpoonScreenshotAction.java    From android-material-stepper with Apache License 2.0 4 votes vote down vote up
@Override
public Matcher<View> getConstraints() {
    return Matchers.any(View.class);
}
 
Example 3
Source File: LogRecordMatcher.java    From beam with Apache License 2.0 4 votes vote down vote up
/** Match {@link LogRecord} instances containing the specified message substring. */
public static LogRecordMatcher hasLog(String substring) {
  return new LogRecordMatcher(Matchers.any(Level.class), substring);
}
 
Example 4
Source File: SpoonScreenshotAction.java    From CleanGUITestArchitecture with MIT License 4 votes vote down vote up
@Override
public Matcher<View> getConstraints() {
    return Matchers.any(View.class);
}