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.SpinnerAdapterTestBinding;
19import android.databinding.testapp.vo.SpinnerBindingObject;
20
21import android.graphics.drawable.ColorDrawable;
22import android.os.Build;
23import android.widget.Spinner;
24
25public class SpinnerBindingAdapterTest
26        extends BindingAdapterTestBase<SpinnerAdapterTestBinding, SpinnerBindingObject> {
27
28    Spinner mView;
29
30    public SpinnerBindingAdapterTest() {
31        super(SpinnerAdapterTestBinding.class, SpinnerBindingObject.class,
32                R.layout.spinner_adapter_test);
33    }
34
35    @Override
36    protected void setUp() throws Exception {
37        super.setUp();
38        mView = mBinder.view;
39    }
40
41    public void testSpinner() throws Throwable {
42        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
43            assertEquals(mBindingObject.getPopupBackground(),
44                    ((ColorDrawable) mView.getPopupBackground()).getColor());
45
46            changeValues();
47
48            assertEquals(mBindingObject.getPopupBackground(),
49                    ((ColorDrawable) mView.getPopupBackground()).getColor());
50        }
51    }
52}
53