Annotation Interface FastTest


@Target({TYPE,METHOD}) @Retention(RUNTIME) public @interface FastTest
Fast Test 快速测试

Marks a test as fast (typically < 100ms).

标记测试为快速测试(通常小于100毫秒)。

Features | 主要功能:

  • Fast test categorization annotation - 快速测试分类注解
  • Test filtering support - 测试过滤支持

Usage Examples | 使用示例:

@FastTest
void shouldReturnQuickly() {
    // Fast test implementation
}

Security | 安全性:

  • Thread-safe: Yes (immutable) - 线程安全: 是(不可变)
Since:
JDK 25, opencode-base-test V1.0.0
Author:
Leon Soo www.LeonSoo.com
See Also:
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description
    Description of the test 测试描述
  • Element Details

    • value

      String value
      Description of the test 测试描述
      Returns:
      the description | 描述
      Default:
      ""