Пример #1
0
        public void converts_sbyte_to_sbyte_value()
        {
            sbyte val    = -12;
            var   result = val.AstFromValue(null, new SByteGraphType());

            result.ShouldNotBeNull();
            result.ShouldBeOfType <SByteValue>();
        }