public void testSetValueWithInvalidCharacter()
 {
     WaveUnitConfigElement e = new WaveUnitConfigElement();
     e.setValue( "B" + WaveUnitConfigElement.SEPARATOR );
 }
 public void testSetKeyWithInvalidCharacter()
 {
     WaveUnitConfigElement e = new WaveUnitConfigElement();
     e.setKey( "A" + WaveUnitConfigElement.SEPARATOR );
 }
 public void testSetKeyWithEmpty()
 {
     WaveUnitConfigElement e = new WaveUnitConfigElement();
     e.setKey( "" );
 }
 public void testSetKeyWithNull()
 {
     WaveUnitConfigElement e = new WaveUnitConfigElement();
     e.setKey( null );
 }
 public void testToString()
 {
     WaveUnitConfigElement e = new WaveUnitConfigElement();
     e.setKey( "A" );
     e.setValue( "B" );
     Assert.AreEqual( "A:B", e.toString() );
 }