blob: 2bb2e3bee0967247592e4140d83c36f0343e63b8 [file] [log] [blame]
<#-- FreeMarker template (see http://freemarker.org/) -->
<#assign licenseFirst = "/*">
<#assign licensePrefix = " * ">
<#assign licenseLast = " */">
<#include "${project.licensePath}">
<#if package?? && package != "">
package ${package};
</#if>
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
/**
*
* @author ${user}
*/
<#-- classNames: "FooA,FooB" -->
<#-- classes: "FooA.class,FooB.class" -->
@RunWith(Suite.class)
@Suite.SuiteClasses({${classes}})
public class ${name} {
}