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 |
Tags
- psychology
- Programming
- web
- essay
- program
- Java
- Book review
- Book
- Python
- leadership
- Software Engineering
- Malaysia
- Italy
- erlang
- management
- hbase
- Kuala Lumpur
- Spain
- django
- history
- programming_book
- ubuntu
- QT
- RFID
- MySQL
- agile
- Linux
- hadoop
- France
- comic agile
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