@Test
public void testArrayToSortedSet() {
NamesArray from = newInstance(NamesArray.class);
String[] names = { "John", "Bill", "Tony", "Fred", "Bruce" };
from.setNames(names);
NamesSortedSet to = mapper.map(from, NamesSortedSet.class);
assertNotNull(to);
assertEquals(names.length, to.getNames().size());
}