ConverterTest.java revision bd42d20f70b1f88e27e3b3c9c3a9c55ec155d128
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.ConvertersBinding;
19
20import android.test.UiThreadTest;
21
22import java.util.ArrayList;
23import java.util.LinkedList;
24
25public class ConverterTest extends BaseDataBinderTest<ConvertersBinding> {
26    public ConverterTest() {
27        super(ConvertersBinding.class);
28    }
29
30    @UiThreadTest
31    public void testGenericConverter() {
32        initBinder();
33        ArrayList<String> values = new ArrayList<String>();
34        LinkedList<String> linkedValues = new LinkedList<String>();
35        values.add("Hello");
36        values.add("World");
37        linkedValues.add("Holy");
38        linkedValues.add("Cow!");
39        mBinder.setList(values);
40        mBinder.setLinked(linkedValues);
41        mBinder.executePendingBindings();
42        assertEquals("Hello World", mBinder.textView1.getText().toString());
43        assertEquals("Holy Cow!", mBinder.textView2.getText().toString());
44    }
45}
46