public void CanNotConvertDateTime() { BsonObjectIdStringConverter objectIdConverter = new BsonObjectIdStringConverter(); Assert.IsFalse(objectIdConverter.CanConvert(typeof(DateTime))); }
public void CanConvertString() { BsonObjectIdStringConverter objectIdConverter = new BsonObjectIdStringConverter(); Assert.IsTrue(objectIdConverter.CanConvert(typeof(string))); }