blob: 15757d2ec0faea3efea370a0894151e9254d3825 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package io.v.baku.toolkit.bind;
import android.widget.ListView;
import org.junit.Test;
public class PrefixBindingBuilderTest {
@Test(expected = IllegalStateException.class)
public void testMissingType() {
CollectionBinding.builder()
.onPrefix("foo")
.bindTo((ListView)null);
}
}