Java Code Examples for org.hamcrest.Matchers#any()
The following examples show how to use
org.hamcrest.Matchers#any() .
These examples are extracted from open source projects.
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 Project: material-components-android File: BottomSheetBehaviorTest.java License: Apache License 2.0 | 4 votes |
@Override public Matcher<View> getConstraints() { return Matchers.any(View.class); }
Example 2
Source Project: android-material-stepper File: SpoonScreenshotAction.java License: Apache License 2.0 | 4 votes |
@Override public Matcher<View> getConstraints() { return Matchers.any(View.class); }
Example 3
Source Project: beam File: LogRecordMatcher.java License: Apache License 2.0 | 4 votes |
/** 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 Project: CleanGUITestArchitecture File: SpoonScreenshotAction.java License: MIT License | 4 votes |
@Override public Matcher<View> getConstraints() { return Matchers.any(View.class); }