Example #1
0
		public void TagProperty ()
		{
			ChartElement ce = new MyChartElement ();

			Assert.AreEqual (null, ce.Tag, "A1");

			ce.Tag = "hi";
			Assert.AreEqual ("hi", ce.Tag, "A2");
		}
        public void TagProperty()
        {
            ChartElement ce = new MyChartElement();

            Assert.AreEqual(null, ce.Tag, "A1");

            ce.Tag = "hi";
            Assert.AreEqual("hi", ce.Tag, "A2");
        }
Example #3
0
		public void ToStringMethod ()
		{
			ChartElement ce = new MyChartElement ();

			Assert.AreEqual ("MyChartElement", ce.ToString (), "A1");
		}
Example #4
0
		public void Constructor ()
		{
			ChartElement ce = new MyChartElement ();

			Assert.AreEqual (null, ce.Tag, "A1");
		}
        public void ToStringMethod()
        {
            ChartElement ce = new MyChartElement();

            Assert.AreEqual("MyChartElement", ce.ToString(), "A1");
        }
        public void Constructor()
        {
            ChartElement ce = new MyChartElement();

            Assert.AreEqual(null, ce.Tag, "A1");
        }