@Test
public void import_characteristics() throws Exception {
String xml = getFileContent("import_characteristics.xml");
DebtModel debtModel = new DebtCharacteristicsXMLImporter().importXML(xml);
List<DebtCharacteristic> rootCharacteristics = debtModel.rootCharacteristics();
assertThat(rootCharacteristics).hasSize(2);
assertThat(rootCharacteristics.get(0).key()).isEqualTo("PORTABILITY");
assertThat(rootCharacteristics.get(0).name()).isEqualTo("Portability");
assertThat(rootCharacteristics.get(0).order()).isEqualTo(1);