public void testToString() { WaveUnitConfigElement e = new WaveUnitConfigElement(); e.setKey("A"); e.setValue("B"); Assert.AreEqual("A:B", e.toString()); }
/// <summary> /// 設定値のキーと値の組を追加する /// </summary> /// <param name="key">キー</param> /// <param name="value">値</param> public void putElement(string key, string value) { foreach (WaveUnitConfigElement item in this.Elements) { if (key == item.getKey()) { item.setValue(value); return; } } WaveUnitConfigElement newItem = new WaveUnitConfigElement(); newItem.setKey(key); newItem.setValue(value); this.Elements.Add(newItem); }
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 testSetKeyWithNull() { WaveUnitConfigElement e = new WaveUnitConfigElement(); e.setKey(null); }
public void testSetKeyWithEmpty() { WaveUnitConfigElement e = new WaveUnitConfigElement(); e.setKey(""); }