Beispiel #1
0
        public void GetIncomingLabel_Should_Return_Correct_Label()
        {
            const int    One       = 0x0001;
            const string OneString = "One";

            var table = new TestTable();

            table.AddIn(One, OneString);

            table.GetIncomingLabel(One).Should().Be(OneString);
        }
        public void GetIncomingLabel_Should_Return_Correct_Label()
        {
            const int One = 0x0001;
            const string OneString = "One";

            var table = new TestTable();
            table.AddIn(One, OneString);

            table.GetIncomingLabel(One).Should().Be(OneString);
        }