public void ColumnType(string column, string typeString)
        {
            var refType  = new FieldRefType(ObjectName.Parse(column));
            var resolved = refType.Resolve(AdminQuery);

            Assert.IsNotNull(resolved);
            Assert.AreEqual(resolved.ToString(), typeString);
        }
 /// <summary>
 /// Initializes a new instance of the <see cref="FieldRefModel"/> with the specified <see cref="FieldRefType"/>.
 /// </summary>
 /// <param name="fieldRefType">FieldRef type</param>
 protected internal FieldRefModel(FieldRefType fieldRefType)
 {
     Type = fieldRefType;
 }