1 2 3 4 5 6 7 8 9 10 11 12
package {{ package_name }}.e2e import org.junit.jupiter.api.Disabled import org.junit.jupiter.api.Test class ExcludedBindingsTest { {% for fixture in fixtures %} @Test @Disabled("{{ reason }}") fun {{ fixture }}() {} {% endfor %} }