*
*/
public class AuthorFirstAbbrLastCommasTest extends TestCase {
public void testFormat() {
LayoutFormatter a = new AuthorFirstAbbrLastCommas();
// Empty case
assertEquals("", a.format(""));
// Single Names
assertEquals("V. S. Someone", a.format("Someone, Van Something"));
// Two names
assertEquals("J. von Neumann and P. Black Brown", a
.format("John von Neumann and Black Brown, Peter"));
// Three names
assertEquals("J. von Neumann, J. Smith and P. Black Brown", a
.format("von Neumann, John and Smith, John and Black Brown, Peter"));
assertEquals("J. von Neumann, J. Smith and P. Black Brown", a
.format("John von Neumann and John Smith and Black Brown, Peter"));
}