コード例 #1
0
 public void SensorValueSetCorrectly(string row, float? expectedValue)
 {
     var eventArg = new SolarCollectorSensorEventArg(row);
     Assert.That(eventArg.SensorValue, Is.EqualTo(expectedValue));
 }
コード例 #2
0
 public void FormattedSetCorrectly(string row, string expectedValue)
 {
     var eventArg = new SolarCollectorSensorEventArg(row);
     Assert.That(eventArg.Formatted, Is.EqualTo(expectedValue));
 }