當前位置: 首頁>>代碼示例>>Java>>正文


Java IntegrationTest類代碼示例

本文整理匯總了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());
}
 
開發者ID:box,項目名稱:mojito,代碼行數:13,代碼來源:PollableTaskWSTest.java

示例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);
}
 
開發者ID:PayU-Tech,項目名稱:Ratel,代碼行數:22,代碼來源:RatelIntegrationTestExecutionListener.java

示例3: addIntegrationTestProperty

import org.springframework.boot.test.IntegrationTest; //導入依賴的package包/類
private void addIntegrationTestProperty(Collection<String> propertySourceProperties) {
  propertySourceProperties.add(IntegrationTest.class.getName() + "=true");
}
 
開發者ID:PayU-Tech,項目名稱:Ratel,代碼行數:4,代碼來源:RatelIntegrationTestExecutionListener.java


注:本文中的org.springframework.boot.test.IntegrationTest類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。