Compile TestingJava 测试工具

联合创作 · 2023-10-01 17:49

Compile Testing 是一个用来测试 Java 和注释处理器的工具。

示例代码:

@RunWith(JUnit4.class)
public class TreeContextTest {
  @Rule public final ExpectedException expectedExn = ExpectedException.none();
  private static final String LITERAL_VALUE = "literal";
  private static final ImmutableList<String> baseTreeSource = ImmutableList.of(
      "package test;",
      "",
      "final class TestClass {",
      "    public String toString() {",
      "        Object variable = new Object();",
      "        return \"" + LITERAL_VALUE + "\" + variable;",
      "    }",
      "",
      "    public void nonsense() {",
      "        int[] numbers = {0, 1, 2, 3, 4};",
      "        for (int x : numbers) {",
      "            if (x % 2 == 0) {",
      "                throw new IllegalStateException();",
      "            }",
      "        }",
      "    }",
      "}");
浏览 2
点赞
评论
收藏
分享

手机扫一扫分享

编辑 分享
举报
评论
图片
表情
推荐
点赞
评论
收藏
分享

手机扫一扫分享

编辑 分享
举报