public void SetLabelTest() { Note test = new Note(); test.SetLabel("hallo"); Assert.AreEqual("hallo", test.Attribute("label").Value); }
public void SetNTest() { Note test = new Note(); test.SetN("1"); Assert.AreEqual("1", test.Attribute("n").Value); }