blob: 6134b850899cf444a520c04dd921b3bcbe6d69a7 [file] [log] [blame]
Tor Norbye21946a22022-01-13 13:53:53 +00001/*
2 * Copyright (C) 2022 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 */
16package androidx.annotation
17
18import kotlin.annotation.AnnotationRetention.BINARY
19import kotlin.annotation.AnnotationTarget.CLASS
20import kotlin.annotation.AnnotationTarget.FUNCTION
21import kotlin.annotation.AnnotationTarget.PROPERTY_GETTER
22import kotlin.annotation.AnnotationTarget.PROPERTY_SETTER
23
24/**
25 * Denotes that this class or method is only `open` to allow unit testing.
26 * Any subclass or override is only allowed from tests.
27 */
28@MustBeDocumented
29@Retention(BINARY)
30@Target(FUNCTION, PROPERTY_GETTER, PROPERTY_SETTER, CLASS)
31public annotation class OpenForTesting