io.micronaut.starter.feature.view.thymeleafSuite.rocker.raw Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micronaut-starter-core Show documentation
Show all versions of micronaut-starter-core Show documentation
Generates Micronaut applications
@import io.micronaut.starter.application.Project
@args (
Project project
)
@if (project.getPackageName() != null) {
package @project.getPackageName();
}
import org.junit.platform.suite.api.SelectPackages;
import org.junit.platform.suite.api.Suite;
import org.junit.platform.suite.api.SuiteDisplayName;
@@Suite
@@SelectPackages({
"io.micronaut.views.fields.tck",
})
@@SuiteDisplayName("Fieldset TCK for Thymeleaf")
class ThymeleafSuite {
}