public void CanConvertShouldBeTrueForTimeSeries()
 {
     TimeseriesConverter target = new TimeseriesConverter();
     Type objectType = typeof(Timeseries);
     bool actual;
     actual = target.CanConvert(objectType);
     Assert.IsTrue(actual);
 }
 public void CanConvertShouldBeFalseForObject()
 {
     TimeseriesConverter target = new TimeseriesConverter();
     Type objectType = typeof(object);
     bool actual;
     actual = target.CanConvert(objectType);
     Assert.IsFalse(actual);
 }