blob: 723651e9d378db4c78ada361dd1ab4afa27f9ee4 [file] [log] [blame]
<#-- FreeMarker template (see http://freemarker.org/) -->
<#assign licenseFirst = "/*">
<#assign licensePrefix = " * ">
<#assign licenseLast = " */">
<#include "${project.licensePath}">
<#if package?? && package != "">
package ${package};
</#if>
<#if methodTearDown!false>
import org.junit.jupiter.api.AfterEach;
</#if>
<#if classTearDown!false>
import org.junit.jupiter.api.AfterAll;
</#if>
<#if methodSetUp!false>
import org.junit.jupiter.api.BeforeEach;
</#if>
<#if classSetUp!false>
import org.junit.jupiter.api.BeforeAll;
</#if>
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
/**
*
* @author ${user}
*/
public class ${name} {
public ${name}() {
}
<#if classSetUp!false>
@BeforeAll
public static void setUpClass() {
}
</#if>
<#if classTearDown!false>
@AfterAll
public static void tearDownClass() {
}
</#if>
<#if methodSetUp!false>
@BeforeEach
public void setUp() {
}
</#if>
<#if methodTearDown!false>
@AfterEach
public void tearDown() {
}
</#if>
<#if testMethodsPlaceholder!false>
// TODO add test methods here.
// The methods must be annotated with annotation @Test. For example:
//
// @Test
// public void hello() {}
</#if>
}