_@Author

Description

  • Information about the author of the test class.

Attributes

Attribute

Name

Required?

Possible

Values

Info
nameYes
  • A string
  • Should be the name of the test class author.
descriptionNo
  • A string
  • Provide any additional information.

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'

);

}

}

Â