Example #1
0
 void testClone(){
     Lyric lyric( "は,h a,1,64,0,0" );
     Lyric copy = lyric.clone();
     CPPUNIT_ASSERT_EQUAL( lyric.toString(), copy.toString() );
 }
Example #2
0
 void testToString()
 {
     string expected = "は,h a,1,64,0,0";
     Lyric lyric = Lyric( expected );
     CPPUNIT_ASSERT_EQUAL( expected, lyric.toString() );
 }