name

Attribute for giving a unit test a name.

The name of a unit test will be output in addition to the fully qualified name of the test function in the test output.

struct name {}

Members

Variables

name
string name;
Undocumented in source.

Examples

@name("some test")
unittest {
	// unit test code
}

@name("some other test")
unittest {
	// unit test code
}

Meta