/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package androidx.test.espresso.intent.rule;
import android.app.Activity;
import androidx.test.espresso.intent.Intents;
import androidx.test.rule.ActivityTestRule;
/**
* This rule makes it easy to use Espresso-Intents APIs in functional UI tests. This class is an
* extension of {@link ActivityTestRule}, which initializes Espresso-Intents before each test
* annotated with Test
* and releases Espresso-Intents after each test run. The Activity will be terminated after
* each test and this rule can be used in the same way as {@link ActivityTestRule}.
*
*
Espresso-Intents APIs can be used in two ways: * *