blob: 671782045172def42863577aa5872d8b9f4b8d53 [file] [log] [blame]
/*
* Copyright (C) 2021 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 android.server.wm.jetpack.utils;
import static android.server.wm.jetpack.utils.ExtensionUtil.assumeExtensionSupportedDevice;
import static android.server.wm.jetpack.utils.ExtensionUtil.getWindowExtensions;
import static org.junit.Assume.assumeNotNull;
import androidx.window.extensions.WindowExtensions;
import androidx.window.extensions.embedding.ActivityEmbeddingComponent;
import androidx.window.extensions.embedding.SplitInfo;
import org.junit.Before;
import java.util.List;
/**
* Base test class for the {@link androidx.window.extensions} implementation provided on the device
* (and only if one is available) for the Activity Embedding functionality.
*/
public class ActivityEmbeddingTestBase extends WindowManagerJetpackTestBase {
protected ActivityEmbeddingComponent mActivityEmbeddingComponent;
protected TestValueCountConsumer<List<SplitInfo>> mSplitInfoConsumer;
@Override
@Before
public void setUp() {
super.setUp();
assumeExtensionSupportedDevice();
WindowExtensions windowExtensions = getWindowExtensions();
assumeNotNull(windowExtensions);
mActivityEmbeddingComponent = windowExtensions.getActivityEmbeddingComponent();
assumeNotNull(mActivityEmbeddingComponent);
mSplitInfoConsumer = new TestValueCountConsumer<>();
mActivityEmbeddingComponent.setSplitInfoCallback(mSplitInfoConsumer);
}
}