public void GetSunsetString_WithValidResponse_ReturnsUTCString()
        {
            var expected = "1:06:09 AM";
            var result   = SunriseSunsetOrg.GetSunsetString(responseContent);

            Assert.AreEqual(expected, result);
        }
 public void GetSunsetString_WithInvalidObject_ThrowsException()
 {
     var result = SunriseSunsetOrg.GetSunsetString("Hello");
 }
        public void GetSunsetString_WithErrorStatusResponse_ReturnsNull()
        {
            var result = SunriseSunsetOrg.GetSunsetString(errorResponseContent);

            Assert.IsNull(result);
        }
        public void GetSunsetString_WithNullResponse_ReturnsNull()
        {
            var result = SunriseSunsetOrg.GetSunsetString(null);

            Assert.IsNull(result);
        }