public void Test_to_kelvin_from_celsius_with_invalid_parameter_throws_exception(double input)
        {
            // Arrange.
            var inputCelsius = new CelsiusDouble(input);

            // Act.
            var result = Assert.Throws <ArgumentOutOfRangeException>(() => inputCelsius.ToKelvin());

            // Assert.
            result.Message.Should().Contain("Value out of range for type.");
        }
        public void Test_to_kelvin_from_celsius_returns_correct_value()
        {
            // Arrange.
            const double expected = 473.15d;
            var          input    = new CelsiusDouble(200);

            // Act.
            var result = input.ToKelvin();

            // Assert.
            result.Should().Be(expected);
        }