<templatename="test"value="@org.junit.jupiter.api.Test void test$Function$() throws java.lang.Exception { org.assertj.core.api.Assertions.assertThat("").isEqualTo("false"); }"description="Create unit test"toReformat="true"toShortenFQNames="true"useStaticImport="true">
<templatename="utest"value="@org.junit.jupiter.api.Test void test$Function$() throws java.lang.Exception { org.assertj.core.api.Assertions.assertThat("Write your test code.").isEqualTo(""); }"description="Create unit test"toReformat="true"toShortenFQNames="true"useStaticImport="true">
<templatename="id"value="@javax.persistence.Id @javax.persistence.GeneratedValue(generator = "system-uuid") @org.hibernate.annotations.GenericGenerator(name = "system-uuid", strategy = "uuid") private String id; "description="Creates entity id field with UUID"toReformat="true"toShortenFQNames="true">
<templatename="junit"value="@org.springframework.test.context.ContextConfiguration(value = "$CLASS_NAME$-context.xml") @org.junit.runner.RunWith(org.springframework.test.context.junit4.SpringJUnit4ClassRunner.class) @org.springframework.test.annotation.DirtiesContext(classMode = DirtiesContext.ClassMode.AFTER_CLASS)"description="JUnit Annotation at beggining of class"toReformat="false"toShortenFQNames="true">
<templatename="eme"value="org.easymock.EasyMock.reset($SELECTION$); org.easymock.EasyMock.expect($SELECTION$.$END$).andReturn(/*TODO*/); org.easymock.EasyMock.replay($SELECTION$); org.easymock.EasyMock.verify($SELECTION$); //TODO move this to where it is appropriate"description="EasyMock.expect : wrap an EasyMock expect block around the given selected instance to mock"toReformat="false"toShortenFQNames="true">