blob: 3f5cacff017fb8e5522f2b0e7fe1e5cad4fa5ff0 [file] [log] [blame]
David Sue7cc3ae2020-12-03 14:28:24 -08001// Copyright (C) 2020 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15android_test {
16 name: "FrameworksWifiNonUpdatableApiTests",
17
18 defaults: ["framework-wifi-test-defaults"],
19
20 srcs: ["src/**/*.java"],
21
22 jacoco: {
23 include_filter: ["android.net.wifi.*"],
24 // TODO(b/147521214) need to exclude test classes
25 exclude_filter: [],
26 },
27
28 static_libs: [
29 "androidx.test.rules",
30 "frameworks-base-testutils",
31 "guava",
32 "mockito-target-minus-junit4",
33 "truth-prebuilt",
34 ],
35
36 libs: [
37 "android.test.runner",
38 "android.test.base",
39 ],
40
41 test_suites: [
42 "general-tests",
43 ],
44}