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


Java Category.value方法代碼示例

本文整理匯總了Java中org.junit.experimental.categories.Category.value方法的典型用法代碼示例。如果您正苦於以下問題:Java Category.value方法的具體用法?Java Category.value怎麽用?Java Category.value使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.junit.experimental.categories.Category的用法示例。


在下文中一共展示了Category.value方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: withTimeout

import org.junit.experimental.categories.Category; //導入方法依賴的package包/類
public Timeout.Builder withTimeout(Class<?> clazz) {
  Annotation annotation = clazz.getAnnotation(Category.class);
  if (annotation != null) {
    Category category = (Category)annotation;
    for (Class<?> c: category.value()) {
      if (c == SmallTests.class) {
        // See SmallTests. Supposed to run 15 seconds.
        return withTimeout(30, TimeUnit.SECONDS);
      } else if (c == MediumTests.class) {
        // See MediumTests. Supposed to run 50 seconds.
        return withTimeout(180, TimeUnit.SECONDS);
      } else if (c == LargeTests.class) {
        // Let large tests have a ten minute timeout.
        return withTimeout(10, TimeUnit.MINUTES);
      }
    }
  }
  return this;
}
 
開發者ID:fengchen8086,項目名稱:ditb,代碼行數:20,代碼來源:CategoryBasedTimeout.java

示例2: getCategoryAnnotations

import org.junit.experimental.categories.Category; //導入方法依賴的package包/類
public static Class<?>[] getCategoryAnnotations(Class<?> c) {
  Category category = c.getAnnotation(Category.class);
  if (category != null) {
    return category.value();
  }
  return new Class<?>[0];
}
 
開發者ID:fengchen8086,項目名稱:ditb,代碼行數:8,代碼來源:ClassTestFinder.java


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