コード例 #1
0
        public void Output_ReturnsOutput_WhenCalled()
        {
            // Arrange
            // Act
            IWire actual = m_Sut.GetOutputWithIndex(0);

            // Assert
            actual.ShouldEqual(m_WireOut);
        }
コード例 #2
0
        public void GetOutputWithIndex_ReturnsWireIn_ForZero()
        {
            // Arrange
            // Act
            IWire actual = m_Sut.GetOutputWithIndex(0);

            // Assert
            actual.ShouldEqual(m_WireOut);
        }