1 package com.android.onboarding.contracts.testing 2 3 import android.os.Bundle 4 import androidx.appcompat.app.AppCompatActivity 5 import androidx.appcompat.R 6 7 /** 8 * An Activity to be used in tests. It can be created with Robolectric, and makes it possible to use 9 * a generic Fragment container for the tests. 10 */ 11 class TestAppCompatActivity : AppCompatActivity() { onCreatenull12 override fun onCreate(savedInstanceState: Bundle?) { 13 super.onCreate(savedInstanceState) 14 setTheme(R.style.Base_Theme_AppCompat) 15 } 16 } 17