All Downloads are FREE. Search and download functionalities are using the official Maven repository.

templates.java-micronaut.common.test.model_test.mustache Maven / Gradle / Ivy

package {{package}};

{{#imports}}import {{import}};
{{/imports}}
import io.micronaut.test.extensions.junit5.annotation.MicronautTest;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Assertions;

/**
 * Model tests for {{classname}}
 */
@MicronautTest
class {{classname}}Test {

{{#models}}
    {{#model}}
        {{^vendorExtensions.x-is-one-of-interface}}
            {{^isEnum}}
    private final {{classname}} model = null;

            {{/isEnum}}
    /**
     * Model tests for {{classname}}
     */
    @Test
    void test{{classname}}() {
        // TODO: test {{classname}}
    }

            {{#allVars}}
    /**
     * Test the property '{{name}}'
     */
    @Test
    void {{name}}Test() {
        // TODO: test {{name}}
    }

            {{/allVars}}
        {{/vendorExtensions.x-is-one-of-interface}}
    {{/model}}
{{/models}}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy