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