Term term = EMFfitModelFactory.eINSTANCE.createTerm();
term.setVisibleContent(newDescriptionContent);
newDescription.getContent().add(term);
//run command
new UpdateStrategyDescriptionCommand(strategy, newDescription).runWithoutUnicaseCommand();
//check
assertEquals(1, strategy.getDescription().getContent().size());
assertEquals(newDescriptionContent, ((Term)strategy.getDescription().getContent().get(0)).getVisibleContent());
}