- 授权协议: Apache
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: https://github.com/google/compile-testing
软件介绍
Compile Testing 是一个用来测试 Javac 和注释处理器的工具。
示例代码:
@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();",
" }",
" }",
" }",
"}");
用户故事与敏捷方法
Mike Cohn / 石永超、张博超 / 清华大学出版社 / 2010-4 / 39.00元
《用户故事与敏捷方法》详细介绍了用户故事与敏捷开发方法的结合,诠释了用户故事的重要价值,用户故事的实践过程,良好用户故事编写准则,如何搜集和整理用户故事,如何排列用户故事的优先级,进而澄清真正适合用户需求的、有价值的功能需求。 《用户故事与敏捷方法》对于软件开发人员、测试人员、需求分析师和管理者,具有实际的指导意义和重要的参考价值。一起来看看 《用户故事与敏捷方法》 这本书的介绍吧!
