FrameLayoutBindingAdapterTest.java revision ec3f23a318203a54ad6aea658ea452948087b73b
1/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package android.databinding.testapp;
17
18import android.databinding.testapp.databinding.FrameLayoutAdapterTestBinding;
19import android.databinding.testapp.vo.FrameLayoutBindingObject;
20
21import android.os.Build;
22import android.test.UiThreadTest;
23import android.widget.FrameLayout;
24
25public class FrameLayoutBindingAdapterTest
26        extends BindingAdapterTestBase<FrameLayoutAdapterTestBinding, FrameLayoutBindingObject> {
27
28    FrameLayout mView;
29
30    public FrameLayoutBindingAdapterTest() {
31        super(FrameLayoutAdapterTestBinding.class, FrameLayoutBindingObject.class,
32                R.layout.frame_layout_adapter_test);
33    }
34
35    @Override
36    protected void setUp() throws Exception {
37        super.setUp();
38        mView = mBinder.view;
39    }
40
41    @UiThreadTest
42    public void testTint() throws Throwable {
43        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
44            assertEquals(mBindingObject.getForegroundTint(),
45                    mView.getForegroundTintList().getDefaultColor());
46
47            changeValues();
48
49            assertEquals(mBindingObject.getForegroundTint(),
50                    mView.getForegroundTintList().getDefaultColor());
51        }
52    }
53}
54