mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
23 lines
701 B
Java
23 lines
701 B
Java
// 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 io.flutter.SmokeTest;
|
|
import io.flutter.util.PreconditionsTest;
|
|
import io.flutter.embedding.android.FlutterActivityAndFragmentDelegateTest;
|
|
|
|
import org.junit.runner.RunWith;
|
|
import org.junit.runners.Suite;
|
|
import org.junit.runners.Suite.SuiteClasses;
|
|
|
|
@RunWith(Suite.class)
|
|
@SuiteClasses({
|
|
PreconditionsTest.class,
|
|
SmokeTest.class,
|
|
FlutterActivityAndFragmentDelegateTest.class,
|
|
})
|
|
/** Runs all of the unit tests listed in the {@code @SuiteClasses} annotation. */
|
|
public class FlutterTestSuite {}
|