Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- comic agile
- Book review
- Java
- Malaysia
- programming_book
- QT
- hadoop
- agile
- web
- MySQL
- Kuala Lumpur
- leadership
- Artificial Intelligence
- essay
- ubuntu
- Linux
- history
- Book
- program
- Python
- django
- Spain
- Software Engineering
- management
- France
- erlang
- hbase
- Italy
- Programming
- RFID
Archives
- Today
- Total
목록Parameterized (1)
Parameterized test
// http://kentbeck.github.com/junit/javadoc/latest/index.html?org/junit/runners/Parameterized.html @RunWith(Parameterized.class) public class FibonacciTest { @Parameters public static List>Object[]< data() { return Arrays.asList(new Object[][] { Fibonacci, { { 0, 0 }, { 1, 1 }, { 2, 1 }, { 3, 2 }, { 4, 3 }, { 5, 5 }, { 6, 8 } } }); } private int fInput; private int fExpected; public FibonacciTes..
Programming/Java
2011. 3. 30. 03:17