Sha256: 37dba40e20db1352b6f6cdef3223c25463f8e27d26ec5713084b362c45dfc4e9
Contents?: true
Size: 1.94 KB
Versions: 3
Compression:
Stored size: 1.94 KB
Contents
package <%=@package%>.unit.<%=@model_name.downcase%>.assembler; /* * Copyright (c) 2015 <%=@user_name%>. * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ import static org.junit.Assert.assertEquals; import <%=@package%>.assembler.<%=@model_name%>Assembler; import <%=@package%>.model.<%=@model_name%>; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.hateoas.ResourceSupport; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import org.springframework.test.context.web.WebAppConfiguration; /** * Unit test for <%=@model_name%> assemblers. * @author <%=@user_name%> */ @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(classes = {<%=@model_name%>AssemblerUnitTestConfig.class}) @WebAppConfiguration public class <%=@model_name%>AssemblerUnitTest { @Autowired private <%=@model_name%>Assembler testInstance; @Test public void testToResource() throws Exception { <%=@model_name%> instance = new <%=@model_name%>(); instance.setId(1L); ResourceSupport resourceSupport = testInstance.toResource(instance); assertEquals("self",resourceSupport.getId().getRel()); } }
Version data entries
3 entries across 3 versions & 1 rubygems