Example #1
0
        public void test_setting_a_wire_to_high_should_result_in_the_wire_being_high()
        {
            var wire = new Wire();
            wire.SetHigh();

            AssertIsHigh(wire, "wire not high after setting it to high");
        }