@Test
public void testMagentoArrayAttributes() throws Exception
{
SalesOrderEntity magentoObject = new SalesOrderEntity();
magentoObject.setStatus_history(new SalesOrderStatusHistoryEntity[]{new SalesOrderStatusHistoryEntity()});
Map<String, Object> map = MagentoMap.toMap(magentoObject);
assertThat(map.get("status_history"), instanceOf(List.class));
}