Ejemplo n.º 1
0
        public void TryGetIncomingLabel_Should_Return_True_For_Existing_Code()
        {
            const int Zero = 0x0000;

            var table = new TestTable();

            table.AddIn(Zero, "Zero");

            string s;

            table.TryGetIncomingLabel(Zero, out s).Should().BeTrue();
        }
Ejemplo n.º 2
0
        public void TryGetIncomingLabel_Should_Return_False_For_Missing_Code()
        {
            const int Zero = 0x0000;
            const int One  = 0x0001;

            var table = new TestTable();

            table.AddIn(Zero, "Zero");

            string s;

            table.TryGetIncomingLabel(One, out s).Should().BeFalse();
        }
Ejemplo n.º 3
0
        public void TryGetIncomingLabel_Should_Retrieve_Correct_Label()
        {
            const int    One       = 0x0001;
            const string OneString = "One";

            var table = new TestTable();

            table.AddIn(One, OneString);

            string label;

            table.TryGetIncomingLabel(One, out label);
            label.Should().Be(OneString);
        }
Ejemplo n.º 4
0
        public void TryGetIncomingLabel_Should_Return_True_For_Existing_Code()
        {
            const int Zero = 0x0000;

            var table = new TestTable();
            table.AddIn(Zero, "Zero");

            string s;
            table.TryGetIncomingLabel(Zero, out s).Should().BeTrue();
        }
Ejemplo n.º 5
0
        public void TryGetIncomingLabel_Should_Return_False_For_Missing_Code()
        {
            const int Zero = 0x0000;
            const int One = 0x0001;

            var table = new TestTable();
            table.AddIn(Zero, "Zero");

            string s;
            table.TryGetIncomingLabel(One, out s).Should().BeFalse();
        }
Ejemplo n.º 6
0
        public void TryGetIncomingLabel_Should_Retrieve_Correct_Label()
        {
            const int One = 0x0001;
            const string OneString = "One";

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

            string label;
            table.TryGetIncomingLabel(One, out label);
            label.Should().Be(OneString);
        }