本文整理匯總了Java中org.springframework.boot.test.IntegrationTest類的典型用法代碼示例。如果您正苦於以下問題:Java IntegrationTest類的具體用法?Java IntegrationTest怎麽用?Java IntegrationTest使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
IntegrationTest類屬於org.springframework.boot.test包,在下文中一共展示了IntegrationTest類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: testGetPollableTask
import org.springframework.boot.test.IntegrationTest; //導入依賴的package包/類
@Test
@Category(IntegrationTest.class)
public void testGetPollableTask() throws Exception {
String pollableTaskName = "testGetPollableTask";
PollableTask parentTask = pollableTaskService.createPollableTask(null, pollableTaskName, null, 0);
com.box.l10n.mojito.rest.entity.PollableTask pollableTask = pollableTaskClient.getPollableTask(parentTask.getId());
assertEquals(pollableTaskName, pollableTask.getName());
assertNull(pollableTask.getFinishedDate());
assertFalse(pollableTask.isAllFinished());
}
示例2: prepareTestInstance
import org.springframework.boot.test.IntegrationTest; //導入依賴的package包/類
/**
* Configures the context in such a way that the service registy server has a
* new unique port, and all provided application contexts are configured to
* use it. It also copies properites provided in {@link RatelTest#value()} and
* {@link IntegrationTest#value()} annotations.
*
* @param testContext
* the TestContext of a test
*/
@Override
public void prepareTestInstance(TestContext testContext) {
applyPropertiesFromAnnotation(testContext, IntegrationTest.class.getName());
applyPropertiesFromAnnotation(testContext, RatelTest.class.getName());
int servicePort = RatelTestContext.getServiceDiscoveryPort(); // hardcoded, can
// be changed to
// finding free
// tcp port
applyServiceRegistryProperties(testContext, servicePort);
}
示例3: addIntegrationTestProperty
import org.springframework.boot.test.IntegrationTest; //導入依賴的package包/類
private void addIntegrationTestProperty(Collection<String> propertySourceProperties) {
propertySourceProperties.add(IntegrationTest.class.getName() + "=true");
}