public void testDescription_Category() throws Exception
{
File iptcFile = new File("src/com/drew/metadata/iptc/test/withIptc.jpg");
MetadataReader reader = new IptcReader(iptcFile);
Metadata metadata = reader.extract();
assertTrue(metadata.containsDirectory(IptcDirectory.class));
Directory directory = metadata.getDirectory(IptcDirectory.class);
assertEquals("Supl. Category2 Supl. Category1 Cat", directory.getDescription(IptcDirectory.TAG_CATEGORY));
}