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 17 package com.android.layoutlib.bridge.intensive; 18 19 import com.android.layoutlib.bridge.BridgeRenderSessionTest; 20 import com.android.layoutlib.bridge.TestDelegates; 21 import com.android.layoutlib.bridge.android.BridgeContextTest; 22 import com.android.layoutlib.bridge.android.BridgeXmlBlockParserTest; 23 import com.android.layoutlib.bridge.impl.LayoutParserWrapperTest; 24 import com.android.layoutlib.bridge.impl.ResourceHelperTest; 25 import com.android.tools.idea.validator.LayoutValidatorTests; 26 import com.android.tools.idea.validator.accessibility.AccessibilityValidatorTests; 27 28 import org.junit.runner.RunWith; 29 import org.junit.runners.Suite; 30 import org.junit.runners.Suite.SuiteClasses; 31 32 import android.content.res.BridgeTypedArrayTest; 33 import android.content.res.Resources_DelegateTest; 34 import android.graphics.Color_DelegateTest; 35 import android.graphics.Matrix_DelegateTest; 36 import android.util.BridgeXmlPullAttributesTest; 37 import android.util.imagepool.ImagePoolHelperTest; 38 import android.util.imagepool.ImagePoolImplTest; 39 40 /** 41 * Suite used by the layoutlib build system 42 */ 43 @RunWith(Suite.class) 44 @SuiteClasses({ 45 RenderTests.class, LayoutParserWrapperTest.class, 46 BridgeXmlBlockParserTest.class, BridgeXmlPullAttributesTest.class, 47 Matrix_DelegateTest.class, TestDelegates.class, 48 BridgeRenderSessionTest.class, ResourceHelperTest.class, BridgeContextTest.class, 49 Resources_DelegateTest.class, Color_DelegateTest.class, ImagePoolHelperTest.class, 50 ImagePoolImplTest.class, HighQualityShadowsRenderTests.class, 51 LayoutValidatorTests.class, AccessibilityValidatorTests.class, BridgeTypedArrayTest.class 52 }) 53 public class Main { 54 } 55