blob: bfe3b546808522edfc86af1f82ac71e75962f107 [file] [log] [blame]
/*
* Copyright (C) 2022 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 com.android.wm.shell.activityembedding;
import static com.android.dx.mockito.inline.extended.ExtendedMockito.spy;
import static org.junit.Assume.assumeTrue;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import android.content.Context;
import androidx.test.ext.junit.runners.AndroidJUnit4;
import androidx.test.filters.SmallTest;
import com.android.wm.shell.ShellTestCase;
import com.android.wm.shell.sysui.ShellInit;
import com.android.wm.shell.transition.Transitions;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
/**
* Tests for the activity embedding controller.
*
* Build/Install/Run:
* atest WMShellUnitTests:ActivityEmbeddingControllerTests
*/
@SmallTest
@RunWith(AndroidJUnit4.class)
public class ActivityEmbeddingControllerTests extends ShellTestCase {
private @Mock Context mContext;
private @Mock ShellInit mShellInit;
private @Mock Transitions mTransitions;
private ActivityEmbeddingController mController;
@Before
public void setUp() {
MockitoAnnotations.initMocks(this);
mController = spy(new ActivityEmbeddingController(mContext, mShellInit, mTransitions));
}
@Test
public void instantiate_addInitCallback() {
assumeTrue(Transitions.ENABLE_SHELL_TRANSITIONS);
verify(mShellInit, times(1)).addInitCallback(any(), any());
}
}