Пример #1
0
 public void INVERTED_DummyOutputPort_WithWrittenLOW_ShouldBeInternal_HIGH()
 {
     var dummyPort = new TestOutputPort();
     dummyPort = (TestOutputPort)dummyPort.WithInvertedState();
     dummyPort.Write(BinaryState.Low);
     dummyPort.GetInternalState().ShouldBeEquivalentTo(BinaryState.High);
 }
Пример #2
0
 public void DummyOutputPort_WithWrittenLOW_ShouldBeInternal_LOW()
 {
     var dummyPort = new TestOutputPort();
     dummyPort.Write(BinaryState.Low);
     dummyPort.GetInternalState().ShouldBeEquivalentTo(BinaryState.Low);
 }
Пример #3
0
 public void DummyOutputPort_WithWrittenHigh_ShouldBeInternal_HIGH()
 {
     var dummyPort = new TestOutputPort();
     dummyPort.Write(BinaryState.High);
     dummyPort.GetInternalState().ShouldBeEquivalentTo(BinaryState.High);
 }