private static AsciiType ConvertFrom(object o) { var type = new AsciiType(); type.SetValue(o); return(type); }
private static T ConvertTo <T>(AsciiType type) { if (type == null) { return(default(T)); } return(type.GetValue <T>()); }
public void Implicit_String_Cast() { // arrange string expected = "The quick brown fox jumps over the lazy dog."; // act AsciiType actual = expected; // assert Assert.Equal(expected, (string)actual); }
public void Operator_NotEqualTo() { // arrange var value = "The quick brown fox jumps over the lazy dog."; AsciiType type = value; // act bool actual = type != value; // assert Assert.False(actual); }
public void CassandraType_Cast() { // arrange string expected = "The quick brown fox jumps over the lazy dog."; AsciiType actualType = expected; // act CassandraObject actual = actualType; // assert Assert.Equal(expected, (string)actual); }