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