{% setvar book_path %}/reference/androidx/_book.yaml{% endsetvar %} {% include "_shared/_reference-head-tags.html" %}

ViewAssertion

interface ViewAssertion


Responsible for performing assertions on a View element.

This is considered part of the test framework public API - developers are free to write their own assertions as long as they meet the following requirements:

Strongly consider using a existing ViewAssertion via the ViewAssertions utility class before writing your own assertion.

Summary

Public methods

abstract void
check(View view, NoMatchingViewException noViewFoundException)

Checks the state of the given view (if such a view is present).

Public methods

check

abstract void check(View view, NoMatchingViewException noViewFoundException)

Checks the state of the given view (if such a view is present).

Parameters
View view

the view, if one was found during the view interaction or null if it was not (which may be an acceptable option for an assertion)

NoMatchingViewException noViewFoundException

an exception detailing why the view could not be found or null if the view was found