blob: 5a0f742372d758786910ab40eb50372a316b3720 [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
Bob Badoure539dba2021-02-12 17:07:05 -080015package {
16 // See: http://go/android-license-faq
17 // A large-scale-change added 'default_applicable_licenses' to import
18 // all of the 'license_kinds' from "frameworks_base_license"
19 // to get the below license kinds:
20 // SPDX-license-identifier-Apache-2.0
21 default_applicable_licenses: ["frameworks_base_license"],
22}
23
David Sue7cc3ae2020-12-03 14:28:24 -080024android_test {
25 name: "FrameworksWifiNonUpdatableApiTests",
26
27 defaults: ["framework-wifi-test-defaults"],
28
29 srcs: ["src/**/*.java"],
30
31 jacoco: {
32 include_filter: ["android.net.wifi.*"],
33 // TODO(b/147521214) need to exclude test classes
34 exclude_filter: [],
35 },
36
37 static_libs: [
38 "androidx.test.rules",
Isaac Katzenelsonf90e3402023-03-13 06:52:10 +000039 "androidx.test.core",
David Sue7cc3ae2020-12-03 14:28:24 -080040 "frameworks-base-testutils",
41 "guava",
42 "mockito-target-minus-junit4",
Krzysztof KosiƄski60b70872023-10-06 20:11:39 +000043 "truth",
David Sue7cc3ae2020-12-03 14:28:24 -080044 ],
45
46 libs: [
47 "android.test.runner",
48 "android.test.base",
49 ],
50
51 test_suites: [
52 "general-tests",
53 ],
54}