_@Author
Description
- Information about the author of the test class.
Attributes
Attribute Name | Required? | Possible Values | Info |
---|---|---|---|
name | Yes |
|
|
description | No |
|
|
Location in the test class file
Before declaration of test class.
Examples
Â
Panel Title
@Author(
name: 'Johnny Principle',
description: 'Add comp logic to stradudle bkempsy.'
)
class log_something
{
@Test
logThis()
{
log(
message: 'A message to log',
log-file-name: 'test_me.log',
log-classifier: 'a_classifier'
);
}
}
Â