// Two names
assertEquals("von Neumann, John and Black Brown, Peter", a
.format("John von Neumann and Black Brown, Peter"));
// Three names
assertEquals("von Neumann, John, Smith, John and Black Brown, Peter", a
.format("von Neumann, John and Smith, John and Black Brown, Peter"));
assertEquals("von Neumann, John, Smith, John and Black Brown, Peter", a
.format("John von Neumann and John Smith and Black Brown, Peter"));
}