- 授权协议: Apache
- 开发语言: HTML/CSS
- 操作系统: 跨平台
- 软件首页: http://pragmatists.github.io/JUnitParams/
- 软件文档: https://github.com/Pragmatists/JUnitParams/wiki/Quickstart
软件介绍
JUnitParams 为 JUnit >=4.6 增加了一个更容易使用的可读性更好的参数测试方式
Example
@RunWith(JUnitParamsRunner.class)
public class PersonTest {
@Test
@Parameters({"17, false",
"22, true" })
public void personIsAdult(int age, boolean valid) throws Exception {
assertThat(new Person(age).isAdult(), is(valid));
}
}See more examples 。
The NSHipster Fake Book (Objective-C)
Mattt Thompson / NSHipster Portland, Oregon / 2014 / USD 19.00
Fake Books are an indispensable tool for jazz musicians. They contain the melody, rhythm, and chord changes for hundreds of standards, allowing a player to jump into any session cold, and "fake it" th......一起来看看 《The NSHipster Fake Book (Objective-C)》 这本书的介绍吧!
