1/*
2 * Copyright (C) 2016 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
17package com.android.layoutlib.bridge.intensive;
18
19import com.android.layoutlib.bridge.BridgeRenderSessionTest;
20import com.android.layoutlib.bridge.TestDelegates;
21import com.android.layoutlib.bridge.android.BridgeXmlBlockParserTest;
22import com.android.layoutlib.bridge.impl.LayoutParserWrapperTest;
23import com.android.layoutlib.bridge.impl.ResourceHelperTest;
24
25import org.junit.runner.RunWith;
26import org.junit.runners.Suite;
27import org.junit.runners.Suite.SuiteClasses;
28
29import android.graphics.Matrix_DelegateTest;
30import android.util.BridgeXmlPullAttributesTest;
31
32/**
33 * Suite used by the layoutlib build system
34 */
35@RunWith(Suite.class)
36@SuiteClasses({
37        RenderTests.class, LayoutParserWrapperTest.class,
38        BridgeXmlBlockParserTest.class, BridgeXmlPullAttributesTest.class,
39        Matrix_DelegateTest.class, TestDelegates.class, PerformanceTests.class,
40        BridgeRenderSessionTest.class, ResourceHelperTest.class
41})
42public class Main {
43}
44