2019-07-23 09:06:19 -07:00
|
|
|
// Copyright 2013 The Flutter 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.flutter;
|
|
|
|
|
|
|
|
|
|
import org.junit.runner.RunWith;
|
|
|
|
|
import org.junit.runners.Suite;
|
|
|
|
|
import org.junit.runners.Suite.SuiteClasses;
|
|
|
|
|
|
2019-08-06 16:15:21 -07:00
|
|
|
import io.flutter.embedding.android.FlutterActivityTest;
|
2019-10-24 19:10:05 -07:00
|
|
|
import io.flutter.embedding.android.FlutterAndroidComponentTest;
|
2019-08-06 16:15:21 -07:00
|
|
|
import io.flutter.embedding.android.FlutterFragmentTest;
|
2019-10-14 14:03:25 -07:00
|
|
|
import io.flutter.embedding.android.FlutterViewTest;
|
2019-08-06 16:15:21 -07:00
|
|
|
import io.flutter.embedding.engine.FlutterEngineCacheTest;
|
2019-09-12 09:50:54 -07:00
|
|
|
import io.flutter.embedding.engine.FlutterJNITest;
|
2019-09-03 15:49:53 -07:00
|
|
|
import io.flutter.embedding.engine.RenderingComponentTest;
|
2019-11-01 17:53:15 -07:00
|
|
|
import io.flutter.embedding.engine.plugins.shim.ShimPluginRegistryTest;
|
2019-09-03 15:49:53 -07:00
|
|
|
import io.flutter.embedding.engine.renderer.FlutterRendererTest;
|
2019-09-12 09:50:54 -07:00
|
|
|
import io.flutter.embedding.engine.systemchannels.PlatformChannelTest;
|
2019-09-17 21:52:40 +01:00
|
|
|
import io.flutter.plugin.common.StandardMessageCodecTest;
|
2019-09-25 11:16:32 -07:00
|
|
|
import io.flutter.plugin.editing.TextInputPluginTest;
|
2019-09-12 09:50:54 -07:00
|
|
|
import io.flutter.plugin.platform.SingleViewPresentationTest;
|
2019-08-06 16:15:21 -07:00
|
|
|
import io.flutter.util.PreconditionsTest;
|
2019-10-31 14:10:45 -07:00
|
|
|
import test.io.flutter.embedding.engine.FlutterEngineTest;
|
2019-11-14 04:09:08 +00:00
|
|
|
import test.io.flutter.embedding.engine.FlutterShellArgsTest;
|
2019-11-12 07:14:27 +00:00
|
|
|
import test.io.flutter.embedding.engine.PluginComponentTest;
|
2019-10-25 20:07:13 -07:00
|
|
|
import test.io.flutter.embedding.engine.dart.DartExecutorTest;
|
2019-08-06 16:15:21 -07:00
|
|
|
|
2019-07-23 09:06:19 -07:00
|
|
|
@RunWith(Suite.class)
|
|
|
|
|
@SuiteClasses({
|
2019-10-24 19:10:05 -07:00
|
|
|
//FlutterActivityAndFragmentDelegateTest.class, //TODO(mklim): Fix and re-enable this
|
2019-10-25 20:07:13 -07:00
|
|
|
DartExecutorTest.class,
|
2019-09-12 09:50:54 -07:00
|
|
|
FlutterActivityTest.class,
|
2019-10-24 19:10:05 -07:00
|
|
|
FlutterAndroidComponentTest.class,
|
2019-08-19 14:12:45 -07:00
|
|
|
FlutterEngineCacheTest.class,
|
2019-10-31 14:10:45 -07:00
|
|
|
FlutterEngineTest.class,
|
2019-09-12 09:50:54 -07:00
|
|
|
FlutterFragmentTest.class,
|
2019-09-03 15:49:53 -07:00
|
|
|
FlutterJNITest.class,
|
2019-11-14 04:09:08 +00:00
|
|
|
FlutterShellArgsTest.class,
|
2019-09-03 15:49:53 -07:00
|
|
|
FlutterRendererTest.class,
|
2019-10-14 14:03:25 -07:00
|
|
|
FlutterViewTest.class,
|
2019-09-12 09:50:54 -07:00
|
|
|
PlatformChannelTest.class,
|
2019-11-12 07:14:27 +00:00
|
|
|
PluginComponentTest.class,
|
2019-09-12 09:50:54 -07:00
|
|
|
PreconditionsTest.class,
|
|
|
|
|
RenderingComponentTest.class,
|
2019-09-17 21:52:40 +01:00
|
|
|
StandardMessageCodecTest.class,
|
2019-11-01 17:53:15 -07:00
|
|
|
ShimPluginRegistryTest.class,
|
2019-09-12 09:50:54 -07:00
|
|
|
SingleViewPresentationTest.class,
|
|
|
|
|
SmokeTest.class,
|
2019-09-25 11:16:32 -07:00
|
|
|
TextInputPluginTest.class,
|
2019-07-23 09:06:19 -07:00
|
|
|
})
|
|
|
|
|
/** Runs all of the unit tests listed in the {@code @SuiteClasses} annotation. */
|
2019-09-12 09:50:54 -07:00
|
|
|
public class FlutterTestSuite { }
|