Java tutorial
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.teradata.benchto.service; import com.teradata.benchto.service.category.IntegrationTest; import org.junit.Before; import org.junit.Test; import org.junit.experimental.categories.Category; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.SpringApplicationConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.setup.MockMvcBuilders; import org.springframework.transaction.PlatformTransactionManager; import org.springframework.transaction.support.TransactionTemplate; import org.springframework.web.context.WebApplicationContext; import static org.assertj.core.api.Assertions.assertThat; @Category(IntegrationTest.class) @RunWith(SpringJUnit4ClassRunner.class) @SpringApplicationConfiguration(classes = ServiceApp.class) @WebAppConfiguration public class IntegrationTestBase { @Autowired private WebApplicationContext webApplicationContext; @Autowired private PlatformTransactionManager transactionManager; protected MockMvc mvc; @Before public void setUp() throws Exception { mvc = MockMvcBuilders.webAppContextSetup(webApplicationContext).build(); } @Test public void testContextNotNull() { // this dummy test is needed to make surefire happy assertThat(webApplicationContext).isNotNull(); } protected void withinTransaction(Runnable runnable) { new TransactionTemplate(transactionManager).execute(transactionStatus -> { runnable.run(); return new Object(); }); } }