private ${enclosing_type}() {
throw new AssertionError("No ${enclosing_type} instances for you!");
}
In order to give each test method a recognizable structure, we define the following sections:
See also http://xunitpatterns.com/Four%20Phase%20Test.html
@${testType:newType(org.junit.jupiter.api.Test)}
void ${testName}() {
${staticImport:importStatic('org.junit.jupiter.api.Assertions.*')}
// Description
${cursor}
// Setup
// Exercise
// Verify
}