1a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyar/*
2a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyar * Copyright (C) 2015 The Android Open Source Project
3a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyar *
4a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyar * Licensed under the Apache License, Version 2.0 (the "License");
5a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyar * you may not use this file except in compliance with the License.
6a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyar * You may obtain a copy of the License at
7a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyar *
8a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyar *      http://www.apache.org/licenses/LICENSE-2.0
9a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyar *
10a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyar * Unless required by applicable law or agreed to in writing, software
11a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyar * distributed under the License is distributed on an "AS IS" BASIS,
12a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyar * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyar * See the License for the specific language governing permissions and
14a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyar * limitations under the License.
15a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyar */
16a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyar
17fead9ca09b117136b35bc5bf137340a754f9edddGeorge Mountpackage android.databinding.multimoduletestapp;
18a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyar
19fead9ca09b117136b35bc5bf137340a754f9edddGeorge Mountimport android.databinding.testlibrary.ObservableInLibrary;
20a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyar
21a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyarimport android.app.Application;
2299a3d3102887d5b4c9c6713cb35d97b478088931Yigit Boyarimport android.databinding.Observable;
23a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyarimport android.test.ApplicationTestCase;
24a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyar
25a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyarimport java.beans.PropertyChangeEvent;
26a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyarimport java.beans.PropertyChangeListener;
27a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyarimport java.util.HashMap;
28a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyarimport java.util.Map;
29a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyar
30a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyar/**
31a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyar * <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
32a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyar */
33a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyarpublic class ApplicationTest extends ApplicationTestCase<Application> {
34a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyar    public ApplicationTest() {
35a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyar        super(Application.class);
36a6e4583962e19e8e93b4ca3f9fe3d34560b6d96cYigit Boyar    }
37fead9ca09b117136b35bc5bf137340a754f9edddGeorge Mount}
38