示例#1
0
        public void transitionAtIndexShouldBeTheSame()
        {
            string[]     array = { "a", "b" };
            _2DArrayList item  = new _2DArrayList("A", array);

            Assert.AreEqual(item.transtions[0], "a");
        }
示例#2
0
        public void stateNameShouldNotBeTheSame()
        {
            string[]     array = { "a", "b" };
            _2DArrayList item  = new _2DArrayList("A", array);

            Assert.AreNotEqual(item.state, "f");
        }