Exemplo n.º 1
0
 void testIsEmpty2()
 {
   APE::Tag tag;
   CPPUNIT_ASSERT(tag.isEmpty());
   tag.setArtist("Mike Oldfield");
   CPPUNIT_ASSERT(!tag.isEmpty());
 }
Exemplo n.º 2
0
 void testIsEmpty()
 {
   APE::Tag tag;
   CPPUNIT_ASSERT(tag.isEmpty());
   tag.addValue("COMPOSER", "Mike Oldfield");
   CPPUNIT_ASSERT(!tag.isEmpty());
 }