| Revision | 51 (tree) |
|---|---|
| Time | 2009-07-29 02:07:40 |
| Author | nagashimahr |
(empty log message)
| @@ -23,9 +23,9 @@ | ||
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | public void testConcat() { |
| 26 | - String a = null; | |
| 27 | - String b = null; | |
| 28 | - String expected = null; | |
| 26 | + String a = "a"; | |
| 27 | + String b = "b"; | |
| 28 | + String expected = "ab"; | |
| 29 | 29 | SampleUtils target = new SampleUtils(); |
| 30 | 30 | String actual = target.concat(a, b); |
| 31 | 31 | assertEquals(expected, actual); |