Added in API level 1
Deprecated in API level 14

TestTarget

@Target([AnnotationTarget.ANNOTATION_CLASS]) class TestTarget

Defines an annotation used be used within the TestInfo annotation. It specifies a single method target for the test (but can be used multiple times).

Summary

Public constructors
TestTarget(conceptName: String, methodArgs: Array<KClass<*>>, methodName: String)

Defines an annotation used be used within the TestInfo annotation.

Properties
String

Specifies the name of a concept being tested.

Array<KClass<*>>

Specifies the signature of the method that is being tested, in terms of Java classes.

String

Specifies the name of the method that is being tested.

Public constructors

TestTarget

Added in API level 1
Deprecated in API level 14
TestTarget(
    conceptName: String,
    methodArgs: Array<KClass<*>>,
    methodName: String)

Deprecated: Obsolete.

Defines an annotation used be used within the TestInfo annotation. It specifies a single method target for the test (but can be used multiple times).

Properties

conceptName

Added in API level 3
Deprecated in API level 14
val conceptName: String

Deprecated: Deprecated in Java.

Specifies the name of a concept being tested. Use this if methodName is not accurate enough. E.g. for java.util.regex.Pattern#compile(String) methodName is not sufficient since the String contains a pattern with its own syntax which has to be tested with different aspects. Areas concerned are e.g. JDBC (SELECT, INSERT, UPDATE, DELETE, ...), regex (character sets, operators,...), formatters (DecimalFormat, DateFormat, ChoiceFormat, ...), ...

methodArgs

Added in API level 1
val methodArgs: Array<KClass<*>>

Deprecated: Deprecated in Java.

Specifies the signature of the method that is being tested, in terms of Java classes.

methodName

Added in API level 1
val methodName: String

Deprecated: Deprecated in Java.

Specifies the name of the method that is being tested.

Explore the Android platform. Learn about the latest releases and technologies for creating Android apps.

Updated Sep 4, 2024

Discover the latest app development tools, platform updates, training, and documentation for developers across every Android device.

Updated Jan 3, 2024

Plan to create quality apps and features from the start by understanding best practices and requirements.

Updated Oct 21, 2024