Home | History | Annotate | Download | only in testapp
      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  */
     16 package android.databinding.testapp;
     17 
     18 import android.databinding.testapp.databinding.SwitchAdapterTestBinding;
     19 import android.databinding.testapp.vo.SwitchBindingObject;
     20 
     21 import android.graphics.drawable.ColorDrawable;
     22 import android.os.Build;
     23 import android.widget.Switch;
     24 
     25 public class SwitchBindingAdapterTest
     26         extends BindingAdapterTestBase<SwitchAdapterTestBinding, SwitchBindingObject> {
     27 
     28     Switch mView;
     29 
     30     public SwitchBindingAdapterTest() {
     31         super(SwitchAdapterTestBinding.class, SwitchBindingObject.class,
     32                 R.layout.switch_adapter_test);
     33     }
     34 
     35     @Override
     36     protected void setUp() throws Exception {
     37         super.setUp();
     38         mView = mBinder.view;
     39     }
     40 
     41     public void testSwitch() throws Throwable {
     42         if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
     43             assertEquals(mBindingObject.getThumb(),
     44                     ((ColorDrawable) mView.getThumbDrawable()).getColor());
     45             assertEquals(mBindingObject.getTrack(),
     46                     ((ColorDrawable) mView.getTrackDrawable()).getColor());
     47 
     48             changeValues();
     49 
     50             assertEquals(mBindingObject.getThumb(),
     51                     ((ColorDrawable) mView.getThumbDrawable()).getColor());
     52             assertEquals(mBindingObject.getTrack(),
     53                     ((ColorDrawable) mView.getTrackDrawable()).getColor());
     54         }
     55     }
     56 }
     57