public void Result_InputIsFalse_ShouldReturnFalse() { // Arrange Probe Probe = new Probe(); Probe.ConnectInput(LowStartPoint); // Act bool output = Probe.Result(); // Assert }
public void Result_InputIsTrue_ShouldReturnTrue() { // Arrange Probe Probe = new Probe(); Probe.ConnectInput(HighStartPoint); // Act bool output = Probe.Result(); // Assert Assert.IsTrue(output); }