TabWidgetBindingAdapterTest.java revision 4d4979490e1fa374c0d7f3599fed0a9e83a579d0
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.TabWidgetAdapterTestBinding;
19import android.databinding.testapp.vo.TabWidgetBindingObject;
20
21import android.graphics.drawable.ColorDrawable;
22import android.os.Build;
23import android.widget.TabWidget;
24
25public class TabWidgetBindingAdapterTest
26        extends BindingAdapterTestBase<TabWidgetAdapterTestBinding, TabWidgetBindingObject> {
27
28    TabWidget mView;
29
30    public TabWidgetBindingAdapterTest() {
31        super(TabWidgetAdapterTestBinding.class, TabWidgetBindingObject.class,
32                R.layout.tab_widget_adapter_test);
33    }
34
35    @Override
36    protected void setUp() throws Exception {
37        super.setUp();
38        mView = mBinder.view;
39    }
40
41    public void testStrip() throws Throwable {
42        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
43            assertEquals(mBindingObject.getDivider().getColor(),
44                    ((ColorDrawable) mView.getDividerDrawable()).getColor());
45            assertEquals(mBindingObject.isTabStripEnabled(), mView.isStripEnabled());
46
47            changeValues();
48
49            assertEquals(mBindingObject.getDivider().getColor(),
50                    ((ColorDrawable) mView.getDividerDrawable()).getColor());
51            assertEquals(mBindingObject.isTabStripEnabled(), mView.isStripEnabled());
52        }
53    }
54}
55