/* * 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 android.databinding.testapp.multiconfig; import android.databinding.ViewDataBinding; import android.databinding.testapp.BaseDataBinderTest; import android.databinding.testapp.databinding.BasicBindingBinding; import android.databinding.testapp.databinding.ConditionalBindingBinding; import android.databinding.testapp.databinding.IncludedLayoutBinding; import android.databinding.testapp.databinding.MultiResLayoutBinding; import android.databinding.testapp.vo.NotBindableVo; import android.content.pm.ActivityInfo; import android.view.View; import android.widget.EditText; import android.widget.TextView; public class PortraitConfigTest extends BaseDataBinderTest<MultiResLayoutBinding> { public PortraitConfigTest() { super(MultiResLayoutBinding.class, ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); } public void testSharedViewIdAndVariableInheritance() throws InterruptedException, NoSuchMethodException, NoSuchFieldException { initBinder(); assertEquals("MultiResLayoutBindingImpl", mBinder.getClass().getSimpleName()); assertPublicField(TextView.class, "objectInLandTextView"); assertPublicField(TextView.class, "objectInDefaultTextView"); assertPublicField(View.class, "objectInDefaultTextView2"); assertField(NotBindableVo.class, "mObjectInDefault"); // includes assertPublicField(ViewDataBinding.class, "includedLayoutConflict"); assertPublicField(BasicBindingBinding.class, "includedLayoutShared"); assertPublicField(ConditionalBindingBinding.class, "includedLayoutPort"); assertPublicField(ConditionalBindingBinding.class, "includedLayoutLand"); } }