Example #1
0
        public void SetLabelTest()
        {
            Note test = new Note();

            test.SetLabel("hallo");

            Assert.AreEqual("hallo", test.Attribute("label").Value);
        }
Example #2
0
        public void SetNTest()
        {
            Note test = new Note();

            test.SetN("1");

            Assert.AreEqual("1", test.Attribute("n").Value);
        }