Exemplo n.º 1
0
        public void ToStringTest()
        {
            DataFlowElement dataFlowElement;

            dataFlowElement = new DataFlowElement("name", "tag");
            Assert.AreEqual <string>("name", dataFlowElement.ToString());
        }
Exemplo n.º 2
0
        public void ToStringTest()
        {
            DataFlowElement target   = new DataFlowElement("Hello There");
            string          expected = "Hello There";
            string          actual;

            actual = target.ToString();
            Assert.AreEqual(expected, actual);
        }