Android Matcher
正規表現を表すPatternクラスとそれに対応した問い合わせの結果を保持するMatcherクラスを別々にすることで、概念的に
PatternとMatcherによる正規表現処理 | Java好き
Matcher  |  Android Developers
The matches method attempts to match the entire input sequence against the pattern.
The lookingAt method attempts to match the input sequence, starting at the beginning
The find] ]method scans the input sequence looking for the [[next subsequence that matches the pattern
Android Test用には?
ViewMatchers  |  Android Developers
ViewMatchers.isDisplayed()など、いろいろViewの状態?がmatchesしてるかのメソッドがある。
ViewMatches.withId(Int)なども
Java