public interface WebTestDescription
Modifier and Type | Method and Description |
---|---|
Iterable<Annotation> |
annotations()
List of annotations of the test.
|
Set<Category> |
categories()
Set of categories describing this test.
|
Iterable<WebTestDescription> |
children()
Descriptions of child tests.
|
String |
className()
Test class name, or
null if this is neither a single test, nor a suite constructed for a test class. |
boolean |
isSuite()
Is it a test suite?
|
boolean |
isTest()
Is it a single test?
|
String |
methodName()
Test method name, or
null if this is not a single test. |
String |
name()
Display name of the test.
|
Class<?> |
testClass()
Test class, or
null if this is neither a single test, nor a suite constructed for a test class.. |
int |
testCount()
Number of single, 'atomic' tests encapsulated by the described test.
|
String name()
String className()
null
if this is neither a single test, nor a suite constructed for a test class.String methodName()
null
if this is not a single test.Class<?> testClass()
null
if this is neither a single test, nor a suite constructed for a test class..Iterable<Annotation> annotations()
Set<Category> categories()
boolean isTest()
true
, if this description describes a single testboolean isSuite()
true
, if this description describes a test suite, i.e. when isTest()
returns false
int testCount()
Iterable<WebTestDescription> children()
Copyright © 2002-2017 Atlassian. All Rights Reserved.