// ---------------------------------------------------------------- mutables
@Test
public void testMutableToInteger() {
Object mutables = new MutableInteger[] {
new MutableInteger(7),
new MutableInteger(3),
new MutableInteger(1)
};
Object result = TypeConverterManager.convertType(mutables, Integer[].class);
assertNotNull(result);