blob: 5989db589be6dfebf6819e92297a838ecb258057 [file] [log] [blame]
Handa Wang806f5a12023-12-04 12:53:39 +08001//
2// Copyright (C) 2023 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
17package {
Aditya Choudhary01b5ede2024-01-31 11:08:57 +000018 default_team: "trendy_team_fwk_thread_network",
Handa Wang806f5a12023-12-04 12:53:39 +080019 default_applicable_licenses: ["Android-Apache-2.0"],
20}
21
22java_defaults {
23 name: "ThreadNetworkIntegrationTestsDefaults",
24 min_sdk_version: "30",
25 static_libs: [
26 "androidx.test.rules",
27 "guava",
28 "mockito-target-minus-junit4",
29 "net-tests-utils",
30 "net-utils-device-common",
31 "net-utils-device-common-bpf",
32 "testables",
33 ],
34 libs: [
35 "android.test.runner",
36 "android.test.base",
37 "android.test.mock",
38 ],
39}
40
41android_test {
42 name: "ThreadNetworkIntegrationTests",
43 platform_apis: true,
44 manifest: "AndroidManifest.xml",
Kangping Dong25bcfee2024-01-27 22:32:30 +080045 test_config: "AndroidTest.xml",
Handa Wang806f5a12023-12-04 12:53:39 +080046 defaults: [
47 "framework-connectivity-test-defaults",
Kangping Dong25bcfee2024-01-27 22:32:30 +080048 "ThreadNetworkIntegrationTestsDefaults",
Handa Wang806f5a12023-12-04 12:53:39 +080049 ],
50 test_suites: [
Kangping Dong25bcfee2024-01-27 22:32:30 +080051 "mts-tethering",
Handa Wang806f5a12023-12-04 12:53:39 +080052 "general-tests",
53 ],
54 srcs: [
55 "src/**/*.java",
56 ],
57 compile_multilib: "both",
58}